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

InsertRange() public method

Cannot be called on a Heap.
Insert cannot be called on a Heap.
public InsertRange ( int Index, ICollection C ) : void
Index int The index before which the objects must be added.
C ICollection The object to add.
return void
		public void InsertRange(int Index, ICollection C)
		{
			throw new InvalidOperationException("Insert cannot be called on a Heap.");
		}