DbConnectionStringBuilder.ICollection.CopyTo(Array, Int32) 方法
定义
从特定的 ICollection 索引开始,将 Array 的元素复制到一个 Array 中。Copies the elements of the ICollection to an Array, starting at a particular Array index.
virtual void System.Collections.ICollection.CopyTo(Array ^ array, int index) = System::Collections::ICollection::CopyTo;
void ICollection.CopyTo (Array array, int index);
abstract member System.Collections.ICollection.CopyTo : Array * int -> unit
override this.System.Collections.ICollection.CopyTo : Array * int -> unit
Sub CopyTo (array As Array, index As Integer) Implements ICollection.CopyTo
参数
- array
- Array
一维 Array,它是从 ICollection 复制的元素的目标。The one-dimensional Array that is the destination of the elements copied from ICollection. Array 必须具有从零开始的索引。The Array must have zero-based indexing.
- index
- Int32
array
中从零开始的索引,从此处开始复制。The zero-based index in array
at which copying begins.
实现
注解
此成员是显式接口成员的实现。This member is an explicit interface member implementation. 它只能在 DbConnectionStringBuilder 实例被强制转换为 ICollection 接口时使用。It can be used only when the DbConnectionStringBuilder instance is cast to an ICollection interface.
有关此成员的说明,请参见 CopyTo。For a description of this member, see CopyTo.