NAnt.NUnit2.Types.CategoryCollection.CopyTo C# (CSharp) Method

CopyTo() public method

Copies the entire collection to a compatible one-dimensional array, starting at the specified index of the target array.
public CopyTo ( Category array, int index ) : void
array Category The one-dimensional array that is the destination of the elements copied from the collection. The array must have zero-based indexing.
index int The zero-based index in at which copying begins.
return void
        public void CopyTo(Category[] array, int index)
        {
            base.List.CopyTo(array, index);
        }