Org.Mentalis.Security.Certificates.DistinguishedNameList.CopyTo C# (CSharp) Method

CopyTo() public method

Copies the entire DistinguishedNameList to a compatible one-dimensional Array, starting at the specified index of the target array.
is a null reference (Nothing in Visual Basic). is less than zero. is multidimensional -or- is equal to or greater than the length of -or- the number of elements in the source DistinguishedNameList is greater than the available space from to the end of the destination array. The type of the source DistinguishedNameList cannot be cast automatically to the type of the destination array.
public CopyTo ( Array array, int index ) : void
array System.Array The one-dimensional Array that is the destination of the elements copied from DistinguishedNameList. The Array 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) {
			m_List.CopyTo(array, index);
		}
		/// <summary>