我创建了一个新的 xna 3.1 项目,并将一些源代码从文档复制到新项目,并出现了该错误。我读过它与命名空间有关,但是命名空间没有改变,老实说,我不知道还能做什么。帮助会很棒。
该错误在 program.cs 文件中带有下划线:
using System;
namespace MyFirstWindowsGame
{
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
static void Main(string[] args)
{
using (Game1 game = new Game1())
{
game.Run();
}
}
}
}
在上面的源代码中,game1 带有下划线。