摘要:
用foreach遍历二维数组 static void Main(string[] args) { object[,] dataArray = { { 1, 2, 3 }, { 4, 5, 6 }, { 7, 8, 9 } }; int count = 0; foreach (object item in dataArray) { Console.Write(item); Console.Write(" "... 阅读全文
posted @ 2012-08-28 15:34
daixinet.com
阅读(6187)
评论(0)
推荐(0)
浙公网安备 33010602011771号