Tanis.Collections.Heap.Insert C# (CSharp) Метод

Insert() публичный Метод

IList implementation. Cannot be used on a Heap.
Insert method cannot be called on a Heap.
public Insert ( int Index, object O ) : void
Index int The index before which the object must be added.
O object The object to add.
Результат void
		public void Insert(int Index, object O)
		{
			throw new InvalidOperationException("Insert method cannot be called on a Heap.");
		}