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

AddRange() public method

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.
return void
		public void AddRange(ICollection C)
		{
			foreach(object Object in C) 
				Add(Object);
		}