XmlnsDictionary.CopyTo Method

Definition

Copies the entries in the XmlnsDictionary to a specified array.

Overloads

CopyTo(Array, Int32)

Copies the entries in the XmlnsDictionary to the specified array.

CopyTo(DictionaryEntry[], Int32)

Copies the entries in the XmlnsDictionary to the specified DictionaryEntry array.

CopyTo(Array, Int32)

Copies the entries in the XmlnsDictionary to the specified array.

public:
 virtual void CopyTo(Array ^ array, int index);
public void CopyTo (Array array, int index);
abstract member CopyTo : Array * int -> unit
override this.CopyTo : Array * int -> unit
Public Sub CopyTo (array As Array, index As Integer)

Parameters

array
Array

The array to copy the table data into.

index
Int32

The zero-based index in the destination array where copying starts.

Implements

Applies to

CopyTo(DictionaryEntry[], Int32)

Copies the entries in the XmlnsDictionary to the specified DictionaryEntry array.

public:
 void CopyTo(cli::array <System::Collections::DictionaryEntry> ^ array, int index);
public void CopyTo (System.Collections.DictionaryEntry[] array, int index);
member this.CopyTo : System.Collections.DictionaryEntry[] * int -> unit
Public Sub CopyTo (array As DictionaryEntry(), index As Integer)

Parameters

array
DictionaryEntry[]

The array to copy the table data into.

index
Int32

The zero-based index in the destination array where copying starts.

Applies to