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

AddRange() public méthode

The objects will be added at the right place.
The Heap is set to use object's IComparable interface, and the specifed object does not implement this interface.
public AddRange ( ICollection C ) : void
C ICollection The object to add.
Résultat void
		public void AddRange(ICollection C)
		{
			foreach(object Object in C) 
				Add(Object);
		}