C#二维数组的定义

作者: 吴杰 分类: 编程 发布时间: 2015-08-03 00:14

C#二维数组的定义

string[,] items = new string[_totalCount, 32];

string[][] = new string[32][]; 是有区别的。