摘要: 1.C#数组数组定义 int[] number; float[] score; string[] names;动态初始化,借助new运算符为数组元素分配空间int[] Array = new int[6];int[] Array = new int[3](1,2,3);int[] Array = n 阅读全文
posted @ 2018-12-27 17:36 单纯的心 阅读(479) 评论(0) 推荐(0)