xpidea.neuro.net.patterns.PatternsCollection.CopyTo C# (CSharp) Method

CopyTo() public method

Copies the xpidea.neuro.net.patterns.PatternsCollection values to a one-dimensional System.Array 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 ( Pattern array, int index ) : void
array Pattern /// /// 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(Pattern[] array, int index)
        {
            List.CopyTo(array, index);
        }