gpt4 book ai didi

c# - Concat HashSet 和 IList

转载 作者:太空狗 更新时间:2023-10-29 22:22:33 25 4
gpt4 key购买 nike

我有一个散列设置为:

HashSet<String> hash ;

和一个列表:

IList<String> names = new List<String>(){"ABC","DEF"};

我想连接散列和名称;然后将结果存储在相同的变量中,即哈希。

因为我有大约 10k 条记录要存储在 HashSet 中,所以执行此操作的最佳方法是什么?

最佳答案

使用UnionWith :

Modifies the current HashSet object to contain all elements that are present in itself, the specified collection, or both.

hash.UnionWith(names);

关于c# - Concat HashSet<String> 和 IList<String>,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22374783/

25 4 0