ModelBinderDictionary.CopyTo 方法

定义

从指定的索引位置开始,将模型联编程序字典中的元素复制到一个数组中。

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

参数

array
KeyValuePair<Type,IModelBinder>[]

目标数组。 数组必须是一维数组,并且具有从零开始的索引。

arrayIndex
Int32

array 中从零开始的索引,将从此索引处开始进行复制。

实现

适用于