Extensions.AssertEqual<T> Method (IEnumerable<T>, IEnumerable<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), _
expected As IEnumerable(Of T) _
)
'Usage
Dim actual As IEnumerable(Of T)
Dim expected As IEnumerable(Of T)
actual.AssertEqual(expected)
public static void AssertEqual<T>(
this IEnumerable<T> actual,
IEnumerable<T> expected
)
[ExtensionAttribute]
public:
generic<typename T>
static void AssertEqual(
IEnumerable<T>^ actual,
IEnumerable<T>^ expected
)
static member AssertEqual :
actual:IEnumerable<'T> *
expected:IEnumerable<'T> -> unit
JScript does not support generic types and methods.
Type Parameters
- T
Parameters
- actual
Type: System.Collections.Generic.IEnumerable<T>
- expected
Type: System.Collections.Generic.IEnumerable<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 .