J
Jack Addington
I am capturing a set of validation messages from my validation method. I
was putting each message back into a StringCollection. I then wanted to
output a big warning message in a Dialog box. Is there a way to quickly
convert essentially an ArrayList of strings into a single string with each
element separated with a newline?
or is
foreach(string s in StrList) newstring.concat("\n" + s);
what I need to do?
thx
was putting each message back into a StringCollection. I then wanted to
output a big warning message in a Dialog box. Is there a way to quickly
convert essentially an ArrayList of strings into a single string with each
element separated with a newline?
or is
foreach(string s in StrList) newstring.concat("\n" + s);
what I need to do?
thx