2018年3月13日

C# 中的集合(Array/ArrayList/List<T>/HashTable/Dictionary)

摘要: int [] numbers = new int[5]; // 长度为5,元素类型为 int。string[,] names = new string[5,4]; // 5*4 的二维数组byte[][] scores = new byte[5][]; // 长度为 5 的数组,元素为 byte的数 阅读全文

posted @ 2018-03-13 17:35 Sweet小马 阅读(794) 评论(5) 推荐(0) 编辑

导航