Console.ReadLine()在XNA中崩溃

时间:2012-01-20 01:14:15

标签: c# xna

为什么我在游戏使用声明之前在program.cs中添加Console.ReadLine()时游戏崩溃。

using System;

namespace MyGame
{
#if WINDOWS || XBOX
static class Program
{
    /// <summary>
    /// The main entry point for the application.
    /// </summary>
    static void Main(string[] args)
    {
        Console.ReadLine();
        using (Game1 game = new Game1())
        {
            game.Run();
        }
    }
}
#endif
}

我得到IO异常未处理。没有足够的存储空间来处理此命令。

0 个答案:

没有答案