C# Class FiftyOne.Foundation.Mobile.Detection.Entities.Memory.MemoryIntegerList

Inheritance: ISimpleList
Mostra file Open project: 51Degrees/dotNET-Device-Detection Class Usage Examples

Protected Properties

Property Type Description
_array int[]

Public Methods

Method Description
Dispose ( ) : void
GetRange ( int index, int count ) : IList

An enumerable that can return a range of T between index and the count provided.

this ( int index ) : int

Accessor for the fixed list.

Private Methods

Method Description
MemoryIntegerList ( Reader reader ) : System

Constructs a new instance of MemoryIntegerList.

Read ( Reader reader ) : void

Reads the list into memory.

Method Details

Dispose() public method

public Dispose ( ) : void
return void

GetRange() public method

An enumerable that can return a range of T between index and the count provided.
public GetRange ( int index, int count ) : IList
index int /// First index of the range required. ///
count int /// Number of elements to return. ///
return IList

this() public method

Accessor for the fixed list.
public this ( int index ) : int
index int /// The index of the entity to be returned from the list. ///
return int

Property Details

_array protected_oe property

Array of items contained in the list.
protected int[] _array
return int[]