首页 > 代码库 > Array
Array
将一个数组中指定的一部分元素,复制到另外一个数组中。需要注意的是,需要先new出另外的数组,大小是已知的。
public static void Copy( Array sourceArray, int sourceIndex, Array destinationArray, int destinationIndex, int length)
参数
sourceArray
类型:System.Array
Array ,它包含要复制的数据。
sourceIndex
类型:System.Int32
一个 32 位整数,它表示 sourceArray 中复制开始处的索引。
destinationArray
类型:System.Array
Array ,它接收数据。
destinationIndex
类型:System.Int32
一个 32 位整数,它表示 destinationArray 中存储开始处的索引。
length
类型:System.Int32
一个 32 位整数,它表示要复制的元素数目
Array
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。