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

RemoveRange() public method

Removes a range of elements from the list.
public RemoveRange ( int index, int count ) : void
index int The zero-based starting index of the range of elements to remove.
count int The number of elements to remove.
return void
		public void RemoveRange(int index, int count)
		{
			list.RemoveRange(index,count);
		}