Habanero.Faces.Win.TreeViewWin.TreeNodeCollectionWin.CopyTo C# (CSharp) Method

CopyTo() public method

Copies the elements of the T:System.Collections.ICollection to an T:System.Array, starting at a particular T:System.Array index.
is null. is less than zero. is multidimensional.-or- is equal to or greater than the length of .-or- The number of elements in the source is greater than the available space from to the end of the destination . The type of the source cannot be cast automatically to the type of the destination .
public CopyTo ( Array array, int index ) : void
array System.Array The one-dimensional that is the destination of the elements copied from . The must have zero-based indexing.
index int The zero-based index in at which copying begins.
return void
            public void CopyTo(Array array, int index)
            {
                _nodes.CopyTo(array, index);
            }