如何显示HashSet>在richTextBox中收集

本文关键字:何显示 richTextBox string SortedSet 显示 HashSet | 更新日期: 2023-09-27 17:51:15

我有HashSet>集合。我想在richTextBox中显示这个HashSet的内容?如何将HashSet转换为右类型?

如何显示HashSet<SortedSet<string>>在richTextBox中收集

尝试:

richTextBox.Text = string.Join("", yourSet.ToArray());

试试这个:

foreach (SortedSet<string> set in youHashSet)
{
    richTextBox.Text = string.Join("", set.ToArray());
}

如果能提供更多的信息就好了。没有看到你的代码很难说。这些是你的基本步骤

在构建Hashset之后然后对它执行for或foreach循环如果不是Hashset,则使用ToString

string helloWorld = string.empty;
foreach(<whateverobject> myobject in Hashset<whateverobject> myHashsetList)
{
 helloWorld = helloWorld = myobject.ToString();
}
richTextBox.Text = helloWorld;      

如果你给它定界或者其他你想定的