决定一个人富有的三个条件,一是出身,二是运气,三是努力
If you can dream it,you can do it! Nothing Impossible~

定义一个Array数组的方法:

Array arr1 = Array.CreateInstance(typeof(string), DS.Tables[0].Rows.Count);    //数据类型,数组大小
Array arr2 = Array.CreateInstance(typeof(double), DS.Tables[0].Rows.Count);

arr1.SetValue(Value,index);  //数据的值,Array索引

arr2.SetValue(Value,index); 

最后可以获得arr1、arr2里的值

posted on 2008-12-19 14:58  ZEKELOVE  阅读(1316)  评论(0编辑  收藏  举报