Class ArrayView<TElementType>
Inheritance
ArrayView<TElementType>
Assembly: SociallyDistant.Framework.dll
Syntax
public class ArrayView<TElementType> : IArrayView<TElementType>
Type Parameters
Name |
Description |
TElementType |
|
Constructors
ArrayView(TElementType[])
Declaration
public ArrayView(TElementType[] collection)
Parameters
Type |
Name |
Description |
TElementType[] |
collection |
|
Properties
Current
Declaration
public TElementType Current { get; }
Property Value
Type |
Description |
TElementType |
|
CurrentIndex
Declaration
public int CurrentIndex { get; }
Property Value
EndOfArray
Declaration
public bool EndOfArray { get; }
Property Value
Next
Declaration
public TElementType? Next { get; }
Property Value
Type |
Description |
TElementType |
|
Previous
Declaration
public TElementType? Previous { get; }
Property Value
Type |
Description |
TElementType |
|
Methods
Advance()
Declaration
GoToPrevious()
Declaration
public void GoToPrevious()
Implements