WikiFunctions.Range.Range C# (CSharp) Method

Range() public method

public Range ( IList list, int start, int count ) : System
list IList
start int
count int
return System
        public Range(IList list, int start, int count)
        {
            this.list = list;
            this.start = start;
            this.count = count;
        }