我想知道在C#中是否有一种方法可以为函数传递函数字符串,并使用该字符串来调用具有字符串所说名称的列表并在函数中使用它
例如:
List<int> BurgerPrices = new List<int>{1, 2, 4};
public int SetupPage(string pageName, string listName) {
return listName[2];
// something like this where I can put the string in and then use it to call a list
}
BurgerPrice = SetupPage("Sub Categories", "BurgerPrices");
换句话说,使用字符串通过变量名调用List,然后能够索引/修改它