我有java代码,我可以为内循环的长度
执行此操作char[][] board = new char[3][3];
for(int a = 0; a < board.length; a++)
{
for(int b = 0; b < board[a].length; b++)
{
//my code here
}
}
但是当我在c#中尝试
时for(int b = 0; b < board[a,].Length; b++)
它会产生错误
“语法错误:预期值”
如果我输入值并将其写为
for(int b = 0; b < board[a,b].Length; b++)
它会产生错误
有人可以帮帮我吗?char不包含Length
的定义
试试这个
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
char[,] board = { { 'a', 'b', 'c' }, { 'd', 'e', 'f' }, { 'g', 'h', 'i' } };
for (int a = 0; a < board.GetLength(0); a++)
{
for (int b = 0; b < board.GetLength(1); b++)
{
char test = board[a,b];
//my code here
}
}
}
}
}