[This topic is pre-release documentation and is subject to change in future releases. Blank topics are included as placeholders.]
Assembly: NEsper (in NEsper.dll)
Compares two collections of objects. The objects must share the same generic
parameter, but can be of different collections.
Namespace: net.esper.compat
Assembly: NEsper (in NEsper.dll)
Syntax
Visual Basic (Declaration) |
---|
Public Shared Function AreEqual(Of T) ( _ baseEnum As IEnumerator(Of T), _ compEnum As IEnumerator(Of T) _ ) As Boolean |
C# |
---|
public static bool AreEqual<T> ( IEnumerator<T> baseEnum, IEnumerator<T> compEnum ) |
Visual C++ |
---|
public: generic<typename T> static bool AreEqual ( IEnumerator<T>^ baseEnum, IEnumerator<T>^ compEnum ) |
Parameters
- baseEnum
- System.Collections.Generic.IEnumerator<(Of T>)
The base enumerator.
- compEnum
- System.Collections.Generic.IEnumerator<(Of T>)
The comp enumerator.
Return Value
Type Parameters
- T