ChannelCollectionBase<T>.AddRange Method

Adds the elements of the specified collection to the end of the ChannelCollectionBase<T>.

Definition

Namespace: Gemstone.PhasorProtocols
Assembly: Gemstone.PhasorProtocols (in Gemstone.PhasorProtocols.dll) Version: 1.0.128 -- Release Build+dd7f32701ba80de4d5b0557e84e0ddc18a34573f
public virtual void AddRange(
	IEnumerable<T> collection
)

Parameters

collection  IEnumerable<T>
The collection whose elements should be added to the end of the ChannelCollectionBase<T>. The collection itself cannot be null, but it can contain elements that are null, if type T is a reference type.

Exceptions

ArgumentNullExceptioncollection is null.

See Also