gpt4 book ai didi

C# 动态列表名称

转载 作者:行者123 更新时间:2023-11-30 19:10:03 24 4
gpt4 key购买 nike

我需要在 C# 中创建几个列表,但想根据某些条件动态命名这些列表。

例如

List<string> x1= new List<string>();
List<string> x2 = new List<string>();

名称“x1”和“x2”会在运行时出现(可能来自某个文件或其他东西)。有什么办法可以实现吗?

最佳答案

创建 Dictionary<string, List<string>> :

var dict = new Dictionary<string, List<string>>();

dict["x1"] = new List<string>();

你可以替换"x1"有变量。

关于C# 动态列表名称,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20415630/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com