我环顾四周,到目前为止没有任何帮助。
我目前有这个代码:
namespace InstaShot
{
[Serializable]
public class Hotkey
{
public uint Modifier { get; private set; }
public int Key { get; private set; }
public Hotkey(uint modifier, int key)
{
this.Modifier = modifier;
this.Key = key;
}
}
}
然而,每当我尝试在我的应用程序设置中创建设置时,我都会得到:
未定义类型“InstaShot.Hotkey”。
显然它是......它适用于同一命名空间内的其他类,而不是那个......现在真的很烦我。