Bigio.Common.Classes.Range.Range C# (CSharp) Method

Range() public method

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.
return System
        public Range(int index, int count)
        {
            Index = index;
            Count = count;
        }