AlgorithmsCopyT Method (IListT, Int32, IListT, Int32, Int32) |
Namespace: X3Platform.Collections
public static void Copy<T>( IList<T> source, int sourceIndex, IList<T> dest, int destIndex, int count )
[Missing <typeparam name="T"/> documentation for "M:X3Platform.Collections.Algorithms.Copy``1(System.Collections.Generic.IList{``0},System.Int32,System.Collections.Generic.IList{``0},System.Int32,System.Int32)"]
Exception | Condition |
---|---|
ArgumentOutOfRangeException | sourceIndex is negative or greater than source.Count |
ArgumentOutOfRangeException | destIndex is negative or greater than dest.Count |
ArgumentOutOfRangeException | count is negative or too large. |
ArgumentNullException | source or dest is null. |