instance.CopyTo(sourceIndex, destination, destinationIndex, count)
Copies the characters from a specified segment of this instance to a specified segment of a destination MfCharList.
sourceIndex
The starting position in this instance where characters will be copied from. The index is zero-based
Can be any type that matches IsInteger or var integer.
destination
The MfCharList instance where characters will be copied.
destinationIndex
The starting position in destination where characters will be copied. The index is zero-based.
Can be any type that matches IsInteger or var integer.
count
The number of characters to be copied.
Can be any type that matches IsInteger or var integer.
Throws MfArgumentNullException if destination is null.
Throws MfArgumentOutOfRangeException sourceIndex, destinationIndex, or count, is less than zero -or- sourceIndex is greater than the length of this instance.
Throws MfArgumentException if sourceIndex + count is greater than the length of this instance. -or- destinationIndex + count is greater than the length of destination.
The CopyTo method is intended to be used in the rare situation when you need to efficiently copy successive sections of a StringBuilder object to a list.
For example, your application could populate a StringBuilder object with a large number of characters then use the CopyTo method to copy small, successive pieces of the StringBuilder object to a list where the pieces are processed. When all the data in the StringBuilder object is processed, the size of the StringBuilder object is set to zero and the cycle is repeated.