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

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

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.
Результат void
		public void InsertRange(int Index, ICollection C)
		{
			throw new InvalidOperationException("Insert cannot be called on a Heap.");
		}