com.calitha.commons.IntegerList.GetRange C# (CSharp) Method

GetRange() public method

Returns an integer list which represents a subset of the elements in the source list.
public GetRange ( int index, int count ) : IntegerList
index int The zero-based list index at which the range starts.
count int The number of elements in the range.
return IntegerList
		public IntegerList GetRange(int index, int count)
		{
			IntegerList result = new IntegerList();
			result.list = this.list.GetRange(index,count);
			return result;
		}