Struct ListByte.Enumerator
Enumerates the elements of a System.Collections.Generic.List.
public struct ListByte.Enumerator
Constructors
Enumerator(ListByte)
Create an enumerator of the collection
public Enumerator(ListByte collection)
Parameters
collection
ListByte
Properties
Current
Gets the element at the current position of the enumerator.
public byte Current { get; }
Property Value
Methods
Dispose()
Releases all resources used by the System.Collections.Generic.List.Enumerator.
public void Dispose()
MoveNext()
Advances the enumerator to the next element of the System.Collections.Generic.List.
public bool MoveNext()
Returns
- bool
true if the enumerator was successfully advanced to the next element; false if the enumerator has passed the end of the collection.
Reset()
Move back to first position
public void Reset()