如何在richTextBox中显示HashSet<SortedSet<string>>集合?
How to display HashSet<SortedSet<string>> collection in richTextBox?
我有 HashSet> 集合。我想在 richTextBox 中显示这个 HashSet 的内容?如何将此 HashSet 转换为正确的类型?
尝试:
richTextBox.Text = string.Join("", yourSet.ToArray());
试试这个:
foreach (SortedSet<string> set in youHashSet)
{
richTextBox.Text = string.Join("", set.ToArray());
}
好吧,多一点信息会有所帮助。没有看到你的代码很难说。但这些是你的基本步骤
构建哈希集之后
然后在其上进行 for 或 foreach 循环
如果对象不是 Hashset
,则对对象进行 ToString
string helloWorld = string.empty;
foreach(<whateverobject> myobject in Hashset<whateverobject> myHashsetList)
{
helloWorld = helloWorld = myobject.ToString();
}
richTextBox.Text = helloWorld;
如果你划定它或任何由你决定的
我有 HashSet> 集合。我想在 richTextBox 中显示这个 HashSet 的内容?如何将此 HashSet 转换为正确的类型?
尝试:
richTextBox.Text = string.Join("", yourSet.ToArray());
试试这个:
foreach (SortedSet<string> set in youHashSet)
{
richTextBox.Text = string.Join("", set.ToArray());
}
好吧,多一点信息会有所帮助。没有看到你的代码很难说。但这些是你的基本步骤
构建哈希集之后 然后在其上进行 for 或 foreach 循环 如果对象不是 Hashset
,则对对象进行 ToStringstring helloWorld = string.empty;
foreach(<whateverobject> myobject in Hashset<whateverobject> myHashsetList)
{
helloWorld = helloWorld = myobject.ToString();
}
richTextBox.Text = helloWorld;
如果你划定它或任何由你决定的