SendMailJobCollectionCopyTo Method
Copies the entire collection to a compatible one-dimensional Array, starting at the specified index of the target array.

Namespace: MailBee.SmtpMail
Assembly: MailBee.NET (in MailBee.NET.dll) Version: 12.4 build 677 for .NET 4.5
Syntax
public void CopyTo(
	Array array,
	int index
)

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