|
-
Jan 29th, 2003, 10:35 AM
#1
Thread Starter
Member
Equivalent vbCrLF in C#
is there an equivelent in C#
I want to write to a textbox and add empty lines in between words.
In VB I could just do:
txtTextBox = "Name " & vbCrLF
in C#, i'm currently doing:
txtTextBox = "Name " + (char)13 + (char)10;
there must be something in C#
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|