Tanis.Collections.Heap.AddRange C# (CSharp) 메소드

AddRange() 공개 메소드

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