2011年9月2日

摘要: 第一段程序: public static void change(int[] arr) { // both of the following changes will affect the original variables: arr[0] = 888; arr = new int[5] { -3, -1, -2, -3, -4 }; Console.WriteLine((arr[0]).ToString()); } public static void Main() { int[] myarray = new int[3]; myarray[0] = 1; myarray[1] = 4;. 阅读全文
posted @ 2011-09-02 02:43 李国清 阅读(397) 评论(3) 推荐(0) 编辑

导航