比較対象の型がこの型とセマンティクス的に等価である場合、true を返します。
名前空間: Microsoft.Data.Edm
アセンブリ: Microsoft.Data.Edm (Microsoft.Data.Edm.dll)
構文
'宣言
<ExtensionAttribute> _
Public Shared Function IsEquivalentTo ( _
thisType As IEdmType, _
otherType As IEdmType _
) As Boolean
'使用
Dim thisType As IEdmType
Dim otherType As IEdmType
Dim returnValue As Boolean
returnValue = thisType.IsEquivalentTo(otherType)
public static bool IsEquivalentTo(
this IEdmType thisType,
IEdmType otherType
)
[ExtensionAttribute]
public:
static bool IsEquivalentTo(
IEdmType^ thisType,
IEdmType^ otherType
)
static member IsEquivalentTo :
thisType:IEdmType *
otherType:IEdmType -> bool
public static function IsEquivalentTo(
thisType : IEdmType,
otherType : IEdmType
) : boolean
パラメーター
- thisType
型: Microsoft.Data.Edm.IEdmType
呼び出し元のオブジェクトへの参照。
- otherType
型: Microsoft.Data.Edm.IEdmType
比較対象の型。
戻り値
型: System.Boolean
2 つの型の等価性。
使用に関するメモ
Visual Basic および C# では、このメソッドを型 IEdmType の任意のオブジェクトのインスタンス メソッドとして呼び出すことができます。このメソッドを呼び出すためにインスタンス メソッドの構文を使う場合は、最初のパラメーターを省略してください。詳細については、「https://msdn.microsoft.com/ja-jp/library/bb384936(v=vs.103)」または「https://msdn.microsoft.com/ja-jp/library/bb383977(v=vs.103)」を参照してください。