那是說array copy array。。。。。。。。。。。。没看懂。
你是说你试过 Array myIntArray=Array.CreateInstance( typeof(System.Int32), 5 );
Array myObjArray = Array.CreateInstance( typeof(System.Object), 5 );
在这样子定义的两个Array数组之间转换吗?
我是想转换
string s;
char[] temp;
这个样子的例子有吗?
使用Array.copy(s,temp,s.length);