AdvisableCollection<T>.InsertRange Method |
Inserts the elements of a collection into the AdvisableCollection<T> at the specified index.
Namespace: PostSharp.Patterns.Collections
Assembly: PostSharp.Patterns.Common (in PostSharp.Patterns.Common.dll) Version: 6.6.14.0 (6.6.14.0)
C#
public void InsertRange( int index, IEnumerable<T> collection )
Parameters
- index
- Type: System.Int32
The zero-based index at which the new elements should be inserted. - collection
- Type: System.Collections.Generic.IEnumerable<T>
The collection whose elements should be inserted into the AdvisableCollection<T>. The collection itself cannot be null, but it can contain elements that are null, if type T is a reference type.
Exception | Condition |
---|---|
ArgumentNullException | collection is null. |
ArgumentOutOfRangeException | index is less than 0. -or- index is greater than Count |