ProviderConnectionPointCollection.CopyTo(ProviderConnectionPoint[], Int32) 方法
定义
将集合复制到 ProviderConnectionPoint 对象的数组。Copies the collection to an array of ProviderConnectionPoint objects.
public:
void CopyTo(cli::array <System::Web::UI::WebControls::WebParts::ProviderConnectionPoint ^> ^ array, int index);
public void CopyTo (System.Web.UI.WebControls.WebParts.ProviderConnectionPoint[] array, int index);
member this.CopyTo : System.Web.UI.WebControls.WebParts.ProviderConnectionPoint[] * int -> unit
Public Sub CopyTo (array As ProviderConnectionPoint(), index As Integer)
参数
- array
- ProviderConnectionPoint[]
接收被复制的集合项的 ProviderConnectionPoint 对象的数组。An array of ProviderConnectionPoint objects that receives the copied items of the collection.
- index
- Int32
数组中插入集合内容的起始点。The starting point in the array at which to insert the collection contents.
注解
CopyTo方法将集合的所有成员复制 ProviderConnectionPointCollection 到一个兼容的一维 ProviderConnectionPoint 对象数组,从该参数所指定的数组中的位置开始 index 。The CopyTo method copies all the members of a ProviderConnectionPointCollection collection to a compatible, one-dimensional array of ProviderConnectionPoint objects, starting at the position in the array that is specified by the index parameter.
CopyTo如果要将不同集合中的对象合并为单个兼容的数组,然后能够使用数组方法访问数组中的项,则方法非常有用。The CopyTo method is useful when you want to combine objects from different collections into a single compatible array, and then be able to access the items in the array using array methods.