ModelStateDictionary.CopyTo Method

Definition

Copies the elements of the dictionary to an array, starting at a specified index.

public:
 virtual void CopyTo(cli::array <System::Collections::Generic::KeyValuePair<System::String ^, System::Web::ModelBinding::ModelState ^>> ^ array, int arrayIndex);
public void CopyTo (System.Collections.Generic.KeyValuePair<string,System.Web.ModelBinding.ModelState>[] array, int arrayIndex);
abstract member CopyTo : System.Collections.Generic.KeyValuePair<string, System.Web.ModelBinding.ModelState>[] * int -> unit
override this.CopyTo : System.Collections.Generic.KeyValuePair<string, System.Web.ModelBinding.ModelState>[] * int -> unit
Public Sub CopyTo (array As KeyValuePair(Of String, ModelState)(), arrayIndex As Integer)

Parameters

array
KeyValuePair<String,ModelState>[]

The one-dimensional array that is the destination of the elements copied from the dictionary. The array must have zero-based indexing.

arrayIndex
Int32

The zero-based index in array at which copying starts.

Implements

Applies to