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

Insert() 공개 메소드

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