📜  列表框项目到字符串 c# 代码示例

📅  最后修改于: 2022-03-11 14:48:55.641000             🧑  作者: Mango

代码示例1
StringBuilder sb = new StringBuilder();
foreach (string s in listBox1.Items)
  sb.Append(s);