摘要: 1 //一维数组 2 int[] a11 = new int[3] { 1, 2, 3 }; 3 int[] a12 = new int[ ] { 1, 2, 3 }; 4 int[] a13 = new [ ] { 1, 2, 3 }; 5 int[... 阅读全文
posted @ 2016-01-21 14:19 .NET全栈工程师 阅读(12501) 评论(0) 推荐(0) 编辑