BamlLocalizationDictionary.CopyTo(DictionaryEntry[], Int32) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Copies the contents of a BamlLocalizationDictionary object to a one-dimensional array of DictionaryEntry objects, starting at a specified index.
public:
void CopyTo(cli::array <System::Collections::DictionaryEntry> ^ array, int arrayIndex);
public void CopyTo (System.Collections.DictionaryEntry[] array, int arrayIndex);
member this.CopyTo : System.Collections.DictionaryEntry[] * int -> unit
Public Sub CopyTo (array As DictionaryEntry(), arrayIndex As Integer)
Parameters
- array
- DictionaryEntry[]
An array of objects to hold the data.
- arrayIndex
- Int32
The starting index value.
Exceptions
arrayIndex
is less than zero.
arrayIndex
exceeds the destination array length.
-or-
Copy cannot fit in the remaining array space between arrayIndex
and the destination array length.