TabletDeviceCollection.CopyTo(TabletDevice[], Int32) 方法

定义

从指定的目标数组索引处开始,将当前集合中的所有元素复制到指定的一维数组中。

public:
 void CopyTo(cli::array <System::Windows::Input::TabletDevice ^> ^ array, int index);
public void CopyTo (System.Windows.Input.TabletDevice[] array, int index);
member this.CopyTo : System.Windows.Input.TabletDevice[] * int -> unit
Public Sub CopyTo (array As TabletDevice(), index As Integer)

参数

array
TabletDevice[]

作为从集合中复制的元素的目标的一维数组。 该数组的索引必须从零开始。

index
Int32

数组参数中从零开始的索引,复制将从此处开始。

例外

如果 index + 集合计数大于或等于 array.length

如果 arraynull

如果 index 小于 0 或者 index 大于或等于 array.length

示例

下面的示例演示 CopyTo 方法。

// Copy the collection to array of tablet devices starting at position index
myTabletDeviceCollection.CopyTo(myTabletDeviceArray, index);
' Copy the collection to array of tablet devices starting at position index
myTabletDeviceCollection.CopyTo(myTabletDeviceArray, index)

适用于