gpt4 book ai didi

.net - 将 HashSet 转换为 .NET 中的数组

转载 作者:行者123 更新时间:2023-12-03 08:35:40 25 4
gpt4 key购买 nike

如何将 HashSet 转换为 .NET 中的数组?

最佳答案

使用 HashSet<T>.CopyTo 方法。此方法从 HashSet<T> 复制项目到一个数组。

所以给出了 HashSet<String>stringSet你会做这样的事情:

String[] stringArray = new String[stringSet.Count];
stringSet.CopyTo(stringArray);

关于.net - 将 HashSet<T> 转换为 .NET 中的数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1603650/

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