我正在尝试使用2D阵列将类似国际象棋的设计制作到控制台中。
我用“ |”作了边界和“-”来设计运动场。
但是,我无法切换字段的颜色(白色|黑色|白色)
这是我的代码(不更改编号字段的颜色)

public class Program
{
    static void Main(string[] args)
    {
        int[] array = new int[10];
        int[,] array2 = new int[6, 9];

        for(int i = 0;i < array2.GetLength(0); i++)
        {
            if (i == array2.GetLength(0)-1 || i == 0)
            {
                for (int h = 0; h < array2.GetLength(1); h++)
                    decidingColors(false);
                    Console.Write("|" + "-");
            }
            else
            for (int x = 0;x < array2.GetLength(1); x++)
            {
                    decidingColors(false);
                Console.Write("|");
                    decidingColors(true);
                Console.Write(array2[i, x]);

            }
            decidingColors(false);
            Console.Write("|");
            Console.WriteLine();
        }
        Console.ReadLine();
    }
    public static void decidingColors(bool wentThrough)
    {
        if(wentThrough == true)
        {
            Console.BackgroundColor = ConsoleColor.White;
            Console.ForegroundColor = ConsoleColor.Black;
        }
        else
        {
            Console.BackgroundColor = ConsoleColor.Black;
            Console.ForegroundColor = ConsoleColor.White;
        }

    }
}


我尝试使用不同的方法,但是它总是以某种方式进入代码并将其破坏。您有一个好的解决方案吗?

提前致谢!

最佳答案

您可以通过使用x%2 == 0来确定需要的奇数或偶数元素来设置替代。

for (int x = 0;x < array2.GetLength(1); x++)
{
    decidingColors(false);
    Console.Write("|");
    decidingColors(x % 2 == 0);
    Console.Write(array2[i, x]);
}

07-24 09:27