Tanis.Collections.Heap.InsertRange C# (CSharp) Méthode

InsertRange() public méthode

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.
Résultat void
		public void InsertRange(int Index, ICollection C)
		{
			throw new InvalidOperationException("Insert cannot be called on a Heap.");
		}