摘要: static void Main(string[] args) { int[,] arr = new int[3, 3] { { 1, 1, 1 }, { 2, 2, 2 }, { 3, 3, 3 } }; Console.WriteLine("行数:" + arr.Rank); Console.W 阅读全文
posted @ 2017-12-04 22:23 BeeSnow 阅读(3863) 评论(0) 推荐(0) 编辑