ICSharpCode.USBlib.DescriptorCollection.CopyTo C# (CSharp) Method

CopyTo() public method

Copies the values to a one-dimensional instance at the specified index.
/// is multidimensional. /// -or- /// The number of elements in the is greater than /// the available space between and the end of /// . /// is . is less than 's lowbound.
public CopyTo ( Descriptor array, int index ) : void
array Descriptor The one-dimensional that is the destination of the values copied from .
index int The index in where copying begins.
return void
        public void CopyTo(Descriptor[] array, int index)
        {
            List.CopyTo(array, index);
        }