SyntaxFix
Write A Post
Hire A Developer
Questions
I faced the same issue. String.Replace('\\.','') is not valid statement and throws the same error. Thanks to C# we can use double quotes instead of single quotes and following works String.Replace("\\.","")
String.Replace('\\.','')
String.Replace("\\.","")