int[, ,] szA = new int[2, 3, 4]{
                                           {{1,2,3,4},
                                               {3,4,5,5},
                                               {6,7,8,9}},
                                         
                                               {{1,2,3,4},
                                                {3,4,5,5},
                                                {6,7,8,20}}
                                               
                                            
                                            
            };
            
            

            foreach (int a in szA)
            {
                Console.WriteLine("遍历=" + a);
            }

            Console.ReadLine();

  

相关文章:

  • 2022-12-23
  • 2021-10-08
  • 2021-08-09
  • 2022-02-04
  • 2021-09-05
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-06-05
  • 2022-12-23
  • 2021-12-18
  • 2021-11-30
  • 2021-10-23
  • 2022-12-23
相关资源
相似解决方案