Advances the enumerator to the next element of the collection.
Syntax
Visual Basic (Declaration) | |
---|
Public Function MoveNext() As Boolean |
Visual Basic (Usage) | Copy Code |
---|
Dim instance As Compressors
Dim value As Boolean
value = instance.MoveNext() |
C# | |
---|
public bool MoveNext() |
C++/CLI | |
---|
public:
bool MoveNext(); |
Return Value
true if the enumerator was successfully advanced to the next element; otherwise, it is false if the enumerator passed the end of the collection.
Remarks
Requirements
Target Platforms: Microsoft .NET Framework 2.0, Windows 2000, Windows XP, Windows Server 2003 family, Windows Server 2008 family, Windows Vista, Windows 7
See Also