C# 클래스 FiftyOne.Foundation.Mobile.Detection.Entities.Memory.MemoryIntegerList

상속: ISimpleList
파일 보기 프로젝트 열기: 51Degrees/dotNET-Device-Detection 1 사용 예제들

보호된 프로퍼티들

프로퍼티 타입 설명
_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[]