How to initialize multi-dimensional array with different default value

后端 未结 2 1948
暗喜
暗喜 2021-01-17 17:18

I am trying to initialize 2-dimensional array of integer values with -1. When I create a new array, it is automatically filled with 0. I know I can do it with 2 for cycles,

2条回答
  •  难免孤独
    2021-01-17 17:36

    Try something like this: int[,] array2D = new int[,] { { -1 }, { -1 }, { -1 }, { -1} };

    or with dimension int[,] array2D = new int[4,2] { { -1,-1 }, { -1,-1 }, { -1,-1 }, {-1,-1} };

提交回复
热议问题