Target DictionaryCopy To Method
Definition
Namespace: Sandcastle.Tools.BuildComponents.Targets
Assembly: Sandcastle.Tools.BuildComponents (in Sandcastle.Tools.BuildComponents.dll) Version: 2026.1.20.0
Assembly: Sandcastle.Tools.BuildComponents (in Sandcastle.Tools.BuildComponents.dll) Version: 2026.1.20.0
C#
public abstract void CopyTo(
KeyValuePair<string, Target>[] array,
int arrayIndex
)VB
Public MustOverride Sub CopyTo (
array As KeyValuePair(Of String, Target)(),
arrayIndex As Integer
)C++
public:
virtual void CopyTo(
array<KeyValuePair<String^, Target^>>^ array,
int arrayIndex
) abstractF#
abstract CopyTo :
array : KeyValuePair<string, Target>[] *
arrayIndex : int -> unit Parameters
- array KeyValuePairString, Target
- The one-dimensional Array that is the destination of the elements copied from ICollectionT. The Array must have zero-based indexing.
- arrayIndex Int32
- The zero-based index in array at which copying begins.
Implements
ICollectionTCopyTo(T, Int32)Exceptions
| ArgumentNullException | array is . |
| ArgumentOutOfRangeException | arrayIndex is less than 0. |
| ArgumentException | The number of elements in the source ICollectionT is greater than the available space from arrayIndex to the end of the destination array. |