J
juli
Hello!
I made a class(form) which is suppose to represent a message box.
I am sending to it constractor a string exc_str which is :
string[] exc_string = (string[])al.ToArray(typeof(string));
string exc_str=String.Join("\n",exc_string);
than I am trying to present this string in a text box but it presents
all the string together,not seperating it with "\n" although if I send
this string as a source to regular MessageBox - it is.
How can I do it in mine MsgBox which contains a text box to present
this string?
I made a class(form) which is suppose to represent a message box.
I am sending to it constractor a string exc_str which is :
string[] exc_string = (string[])al.ToArray(typeof(string));
string exc_str=String.Join("\n",exc_string);
than I am trying to present this string in a text box but it presents
all the string together,not seperating it with "\n" although if I send
this string as a source to regular MessageBox - it is.
How can I do it in mine MsgBox which contains a text box to present
this string?