Basically, I have a list with multiple items in it and I want a single message box to display them all.
The closest I have got is a message box for each item (using
You can also use Stringbuilder:
StringBuilder builder = new StringBuilder(); foreach(string str in list) { builder.Append(str.ToString()).AppendLine(); } Messagebox.Show(builder.ToString());
Regards