L
Lauchlan M
How do I add a linefeed (ASCII character 10) to a string?
For example in Delphi I would do
TheString := PreString+ Chr(10) + PostString;
Where Chr(10) whacks in the ascii character for line feed / carriage return
and prestring and poststring are other strings.
How do I do this in C#?
Thanks!
Lauchlan M
For example in Delphi I would do
TheString := PreString+ Chr(10) + PostString;
Where Chr(10) whacks in the ascii character for line feed / carriage return
and prestring and poststring are other strings.
How do I do this in C#?
Thanks!
Lauchlan M