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

SetRange() public method

Copies the elements of a collection over a range of elements in the list.
public SetRange ( int index, IntegerList otherList ) : void
index int The zero-based index at which to start copying the elements /// of otherList
otherList IntegerList The other list whose elements to copy to the list.
return void
		public void SetRange(int index, IntegerList otherList)
		{
			list.SetRange(index,otherList.list);
		}