伙计们需要一段时间来解决这个问题。我在visual C# express 2010和monogame 2.5中编写代码以在windows中制作游戏,使用Texture2D为游戏加载一些图像并编译。但是当我尝试编译项目时,它给了我这个错误。你调用的对象是空的。
private static Game1 game;
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
game = new Game1();
game.Run();//This line gives the warning
}
}
我试试这段代码
Game1 game = new Game1();
game.Run();
但它没有用,它仍然给出了这个错误。
你调用的对象是空的
我错过了什么还是应该安装一些东西来解决这个问题?