ListBox.ObjectCollection.ICollection.CopyTo(Array, Int32) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
从特定的数组索引开始,将集合的元素复制到数组中。
此 API 支持产品基础结构,不能在代码中直接使用。
virtual void System.Collections.ICollection.CopyTo(Array ^ dest, int index) = System::Collections::ICollection::CopyTo;
virtual void System.Collections.ICollection.CopyTo(Array ^ destination, int index) = System::Collections::ICollection::CopyTo;
void ICollection.CopyTo (Array dest, int index);
void ICollection.CopyTo (Array destination, int index);
abstract member System.Collections.ICollection.CopyTo : Array * int -> unit
override this.System.Collections.ICollection.CopyTo : Array * int -> unit
abstract member System.Collections.ICollection.CopyTo : Array * int -> unit
override this.System.Collections.ICollection.CopyTo : Array * int -> unit
Sub CopyTo (dest As Array, index As Integer) Implements ICollection.CopyTo
Sub CopyTo (destination As Array, index As Integer) Implements ICollection.CopyTo
参数
- destdestination
- Array
一维数组,用作从 ICollection 复制的元素的目标位置。 该数组的索引必须从零开始。
- index
- Int32
数组中开始复制的位置的索引(从零开始)。
实现
例外
该数组类型与 ListBox.ObjectCollection 中的项不兼容。
.NET 5 及更高版本: destination
是 null
。
注解
此成员是显式接口成员的实现。 它只能在 ListBox.ObjectCollection 实例被强制转换为 ICollection 接口时使用。