D
deko
In VB, I would do this for a new line:
str = "text here" & VbCrLf & "more text"
For other characters, I would use the ascii code:
For example, Chr(34) is a double quote (").
how do I do this kind of stuff in C#?
Can anyone point me to a reference?
Thanks!
str = "text here" & VbCrLf & "more text"
For other characters, I would use the ascii code:
For example, Chr(34) is a double quote (").
how do I do this kind of stuff in C#?
Can anyone point me to a reference?
Thanks!