Extensions.AssertEqual<T> Method (IEnumerable<T>, T[])
Namespace: ReactiveTests
Assembly: Tests.System.Reactive (in Tests.System.Reactive.dll)
Syntax
'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.
Type Parameters
- T
Parameters
- actual
Type: System.Collections.Generic.IEnumerable<T>
- expected
Type: T[]
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type IEnumerable<T>. When you use instance method syntax to call this method, omit the first parameter. For more information, see or .