Castle.MonoRail.Framework.Internal.ResourceDictionary.CopyTo C# (CSharp) Method

CopyTo() public method

Copies the elements of the to an , starting at a particular index.
array is null. index is less than zero. array is multidimensional.-or- index is equal to or greater than the length of array.-or- The number of elements in the source is greater than the available space from index to the end of the destination array. The type of the source cannot be cast automatically to the type of the destination array.
public CopyTo ( Array array, int index ) : void
array 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 array at which copying begins.
return void
		public void CopyTo(Array array, int index)
		{
			map.CopyTo(array, index);
		}