日期:2014-05-19  浏览次数:20813 次

c#语法
double   [,]   hillheight={{3,2,3,4},{2,3,4,5},{3,4,5,6}};
                Console.WriteLine( "the   rank   of   the   hillheight:{0} ",   hillheight.Rank);
                Console.WriteLine( "the   elements   list: ");
                foreach   (double   hill   in   hillheight)
                        Console.WriteLine( "{0} ",   hill);
                Console.ReadKey();

这里面的hillheight.Rank的.rank到底是什么意思

------解决方案--------------------
rank表示这个2维数组,也就是矩阵的秩。