您好,这是我第一次发帖,如果我做错了什么,请纠正我。
我是一个初学者,我正在尝试制作一种仅使用winform和按钮作为控件的文本冒险游戏。问题是当我尝试制作库存清单时。它给了我一个语法错误说
“库存是一个‘领域’,但被用作‘类型’
这是有问题的代码:
public partial class MainGameWindow : Form
{
//sets the room ID to the first room as default
string roomID = "FirstRoom";
//makes a list for the inventory
List<string> Inventory = new List<string>();
Inventory.Add("A piece of string...Useless!");
}