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

Inheritance: ISimpleList
Afficher le fichier Open project: 51Degrees/dotNET-Device-Detection Class Usage Examples

Protected Properties

Свойство Type Description
_array int[]

Méthodes publiques

Méthode 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

Méthode Description
MemoryIntegerList ( Reader reader ) : System

Constructs a new instance of MemoryIntegerList.

Read ( Reader reader ) : void

Reads the list into memory.

Method Details

Dispose() public méthode

public Dispose ( ) : void
Résultat void

GetRange() public méthode

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. ///
Résultat IList

this() public méthode

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

Property Details

_array protected_oe property

Array of items contained in the list.
protected int[] _array
Résultat int[]