C#的一些方法读程序转c++
1.Array.Copy
public static void Copy( Array sourceArray, int sourceIndex, Array destinationArray, int destinationIndex, int length )
参数
- sourceArray
- Type: System.Array
包含要复制的数据的 Array。
- sourceIndex
- Type: System.Int32
一个 32 位整数,它表示 sourceArray 中复制开始处的索引。
- destinationArray
- Type: System.Array
接收数据的 Array。
- destinationIndex
- Type: System.Int32
一个 32 位整数,它表示 destinationArray 中存储开始处的索引。
- length
- Type: System.Int32
一个 32 位整数,它表示要复制的元素数目。
2.