ConsumerConnectionPointCollection.CopyTo 方法

定义

ConsumerConnectionPointCollection 集合中的所有项复制到一个兼容的一维数组中,该数组的元素为 ConsumerConnectionPoint 对象,复制从目标数组的指定索引处开始进行。

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

参数

array
ConsumerConnectionPoint[]

ConsumerConnectionPoint 对象的从零开始的数组,它接收从当前 ConsumerConnectionPointCollection 复制的项。

index
Int32

目标数组中开始接收复制内容的位置。

注解

使用此方法将当前对象的内容复制 ConsumerConnectionPointCollection 到指定的从零开始的数组中。 从目标数组的指定索引处开始复制项。 使用数组时,可以使用数组语法来访问对象中的项 Array

适用于