我是初學者,並且不斷收到'System.NullReferenceException'錯誤。我到處尋找,但我似乎無法找到有用的解決方案。 我簡化了下面的代碼,以便更清楚。未將對象引用設置爲對象的實例 - C#
namespace tile_test
{
public class Game1 : Game
{
public static float bottomWorld = 38400f;
public static float rightWorld = 134400f;
public static int maxTilesX = (int)rightWorld/16 + 1;
public static int maxTilesY = (int)bottomWorld/16 + 1;
public Game1()
{
Tile[,] tile = new Tile[maxTilesX, maxTilesY];
int x = 1;
int y = 1;
tile[x, y].active = false; //Error on this line.
}
}
}
磁磚 - 類如下所示
namespace tile_test
{
public class Tile
{
public bool active;
}
}
任何人都可以幫我嗎?