C# Класс FiftyOne.Foundation.Mobile.Detection.Entities.Memory.MemoryIntegerList

Наследование: ISimpleList
Показать файл Открыть проект Примеры использования класса

Защищенные свойства (Protected)

Свойство Тип Описание
_array int[]

Открытые методы

Метод Описание
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.

Приватные методы

Метод Описание
MemoryIntegerList ( Reader reader ) : System

Constructs a new instance of MemoryIntegerList.

Read ( Reader reader ) : void

Reads the list into memory.

Описание методов

Dispose() публичный Метод

public Dispose ( ) : void
Результат void

GetRange() публичный Метод

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. ///
Результат IList

this() публичный Метод

Accessor for the fixed list.
public this ( int index ) : int
index int /// The index of the entity to be returned from the list. ///
Результат int

Описание свойств

_array защищенное свойство

Array of items contained in the list.
protected int[] _array
Результат int[]