ctrl line-feed

  • Thread starter Thread starter Tim
  • Start date Start date
T

Tim

How do I create a string that contains a carriage return line feed in the
middle. For example:

"string 1" + crlf + "string 2"

would output:
string1
string2

Thanks in advance for your help.
 
You can also use Environment.NewLine that will also work for richtexboxes
and console, etc.
 
Back
Top