LDAP Client.Net

AttributeCollection.CopyTo Method 

Copies the elements of the collection to an array, starting at a particular array index.

[Visual Basic]
MustOverride Public Sub CopyTo( _ 
   ByVal array As Array, _ 
   ByVal index As Integer _ 
) _
    Implements ICollection.CopyTo
[C#]
public abstract void CopyTo(
   Array array,
   int index
);
[C++]
public: abstract void CopyTo(
   Array* array,
   int index
);
[JScript]
public abstract function CopyTo(
   Array array,
   int index
);

Parameters

array
The one-dimensional Array that is the destination of the elements copied from. The Array must have zero-based indexing.
index
The zero-based index in array at which copying begins.

Implements

ICollection.CopyTo

See Also

AttributeCollection Class | LdapServices.Ldap Namespace