完整错误图像 我正在尝试使用键盘类。
这是我的代码
using System;
using System.Windows; // shows this is unnecessary
namespace HelloWorld
{
public class Map
{
public string[][] layer { get; set; }
public int[][] collision { get; set; }
}
class Program
{
static void Main(string[] args)
{
while (true)
{
Console.WriteLine(System.Windows.Input.Keyboard.IsKeyDown(ConsoleKey.Spacebar));
}
}
}
}
我该怎么办?
我尝试使用
Windows.Input
添加,但它只是显示 IDE0005 警告。
我想在我的游戏中使用
Keyboard.IsKeyDown
但是是的
添加PresentationCore.dll程序集作为参考。
添加 WindowsBase.dll 程序集作为参考。