使用字符串作为变量名称来调用不同类型的列表

时间:2017-08-22 21:14:59

标签: c#

我想知道在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,然后能够索引/修改它

0 个答案:

没有答案