日期:2014-05-18 浏览次数:20699 次
for (int r = 1; r <= 9; r++) { for (int c = 2; c <= 4; c++) { List<int> arr = new List<int>(){Convert.ToInt32(flex[r,c])}; } }
for (int r = 1; r <= 9; r++) { List<int> arr = new List<int>(3); for (int c = 2; c <= 4; c++) { arr.Add(Convert.ToInt32(flex[r, c])); } }
------解决方案--------------------