C# 中的集合(Array/ArrayList/List<T>/HashTable/Dictionary)
2021-02-09 12:14
阅读:316
int [] numbers = new int[5]; // 长度为5,元素类型为 int。
string[,] names = new string[5,4]; // 5*4 的二维数组
byte[][] scores = new byte[5][]; // 长度为 5 的数组,元素为 byte的数组,元素数组的长度未知。
不同的格式:
int[] numbers = new int[5];
int[] numbers2 = new []{100, 200, 300, 400, 500};
int[] numbers3 = {100, 200, 300, 400, 500};
上一篇:CSS命名规范
文章来自:搜素材网的编程语言模块,转载请注明文章出处。
文章标题:C# 中的集合(Array/ArrayList/List<T>/HashTable/Dictionary)
文章链接:http://soscw.com/index.php/essay/53079.html
文章标题:C# 中的集合(Array/ArrayList/List<T>/HashTable/Dictionary)
文章链接:http://soscw.com/index.php/essay/53079.html
评论
亲,登录后才可以留言!