com.calitha.commons.IntegerList.RemoveRange C# (CSharp) 메소드

RemoveRange() 공개 메소드

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.
리턴 void
		public void RemoveRange(int index, int count)
		{
			list.RemoveRange(index,count);
		}