Extensions.AssertEqual < T > 方法 (IEnumerable T > , IEnumerable << T >)
Namespace:ReactiveTests
裝配: Tests.System.Reactive.dll) 中的 Tests.System.Reactive (
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.
類型參數
- T
參數
- 實質
類型:System.Collections.Generic.IEnumerable< T>
- 必須是
類型:System.Collections.Generic.IEnumerable< T>
使用注意事項
在 Visual Basic 和 C# 中,您可以在IEnumerable< T > 類型的任何物件上呼叫這個方法作為實例方法。 使用執行個體方法語法呼叫這個方法時,請省略第一個參數。 如需詳細資訊,請參閱 或 。