Replace string with nothing
Hi I need to replace the character \ in string with nothing.
This: myString.Replace('\',' '); leaves me with a compile error
Of course because \' is the escape for '
But what should be the exact syntax then??
Thanks in advance