gpt4 book ai didi

c# - 如何在消息框中写入字典的内容?

转载 作者:太空宇宙 更新时间:2023-11-03 19:14:58 27 4
gpt4 key购买 nike

我在 Visual Studio C# 中工作,我有一个包含一些记录的“字符串-字符串”字典变量,例如:

{Apartment1},{Free}

{Apartment2},{Taken}

等...

我怎样才能把它写在消息框里,让它显示如下内容:

Apartment1 - Free

Apartment2 - Taken

等...

重要的是每条记录都在消息框中的新行内。

最佳答案

您可以遍历字典中的每个项目并构建一个字符串,如下所示:

Dictionary<string, string> dictionary = new Dictionary<string, string>();
StringBuilder sb = new StringBuilder();

foreach (var item in dictionary)
{
sb.AppendFormat("{0} - {1}{2}", item.Key, item.Value, Environment.NewLine);
}

string result = sb.ToString().TrimEnd();//when converting to string we also want to trim the redundant new line at the very end
MessageBox.Show(result);

关于c# - 如何在消息框中写入字典的内容?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17652376/

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