C# 클래스 Bigio.Common.Classes.Range

Range is object containes information about some area inside any array. It consists of index of start element and count of element.
파일 보기 프로젝트 열기: 80LevelElf/Bigio

공개 프로퍼티들

프로퍼티 타입 설명
Count int
Index int

공개 메소드들

메소드 설명
Divide ( int partCount ) : IEnumerable

Divide current range into almost equal inner ranges.

Range ( int index, int count ) : System

Create new instance of Range with specified data.

메소드 상세

Divide() 공개 메소드

Divide current range into almost equal inner ranges.
public Divide ( int partCount ) : IEnumerable
partCount int Count of parts to divide
리턴 IEnumerable

Range() 공개 메소드

Create new instance of Range with specified data.
public Range ( int index, int count ) : System
index int Index of start element of range.
count int Count of elements in range.
리턴 System

프로퍼티 상세

Count 공개적으로 프로퍼티

Count of elements in range.
public int Count
리턴 int

Index 공개적으로 프로퍼티

Index of start element of range.
public int Index
리턴 int