Hi
I have a string as
String str = "AT";
i need to append control line feed character
like i need to append ascii value to that string
how would i do that in C#
thanks
Paresh
Printable View
Hi
I have a string as
String str = "AT";
i need to append control line feed character
like i need to append ascii value to that string
how would i do that in C#
thanks
Paresh
String str = "AT";
i need to append control line feed character
like i need to append ascii value to that string
how would i do that in C#
Same as plain old C here, \n = new line, \r = carriage return.
So:
String str = "AT\n";
Buffer0verflow
You also might want to check out System.Environment.NewLineQuote:
Originally posted by PareshG
Hi
I have a string as
String str = "AT";
i need to append control line feed character
like i need to append ascii value to that string
how would i do that in C#
thanks
Paresh