Instead of
List<string> allStrings = new List<string>(){"a","b,"c"};
string o = string.Empty;
foreach(string s in allStrings) o+=s+"\n";
mbox("strings: "+o);
i would like to do something like
mbox("strings: " + allStrings.ForEach(p=>p+"\n")) //of course this is wrong
is it possible?

New Topic/Question
Reply




MultiQuote






|