Tanis.Collections.Heap.Insert C# (CSharp) Method

Insert() public method

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.
return void
		public void Insert(int Index, object O)
		{
			throw new InvalidOperationException("Insert method cannot be called on a Heap.");
		}