Namespace:ReactiveTests
アセンブリ: Tests.System.Reactive (Tests.System.Reactive.dll)
構文
'Declaration
<ExtensionAttribute> _
Public Shared Sub AssertEqual(Of T) ( _
actual As IEnumerable(Of T), _
ParamArray expected As T() _
)
'Usage
Dim actual As IEnumerable(Of T)
Dim expected As T()
actual.AssertEqual(expected)
public static void AssertEqual<T>(
this IEnumerable<T> actual,
params T[] expected
)
[ExtensionAttribute]
public:
generic<typename T>
static void AssertEqual(
IEnumerable<T>^ actual,
... array<T>^ expected
)
static member AssertEqual :
actual:IEnumerable<'T> *
expected:'T[] -> unit
JScript does not support generic types and methods.
型パラメーター
- T
パラメーター
- が必要です
種類: T[]
使用上の注意
Visual Basic と C# では、 IEnumerable<T> 型の任意のオブジェクトでインスタンス メソッドとしてこのメソッドを呼び出すことができます。 インスタンス メソッド構文を使用してこのメソッドを呼び出す場合は、最初のパラメーターを省略します。 詳細については、」または」を参照してください。