SendMailJobCollectionCopyTo Method |
Copies the entire collection to a compatible one-dimensional
Array, starting at the specified index of the target array.
Namespace: MailBee.SmtpMailAssembly: MailBee.NET (in MailBee.NET.dll) Version: 12.5.0 build 687 for .NET 4.5
Syntax public void CopyTo(
Array array,
int index
)
Public Sub CopyTo (
array As Array,
index As Integer
)
Parameters
- array
- Type: SystemArray
The one-dimensional Array that is the destination of the elements copied from the collection. The Array must have zero-based indexing. - index
- Type: SystemInt32
The zero-based index in array at which copying begins.
Implements
ICollectionCopyTo(Array, Int32)Remarks This method simply calls
CopyTo(Array) to copy the elements
and thus may also throw exceptions specific to that method.
See Also