String.Trim("\r\n");
it does nothing even though the intellisense claims it will remove all occurances of whitespace.
String.Trim("\r\n");
|
|
|
String myString = String.Trim("\r\n");
String myString = "abunchacrap";
myString = myString.Trim("\r\n")