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

Insert() public method

Inserts an element into the list at the specified index.
public Insert ( int index, int value ) : void
index int The zero-based index at which value should be inserted.
value int The value to insert.
return void
		public void Insert(int index, int value)
		{
			list.Insert(index,value);
		}