All Tags »
c#
Sorry, but there are no more tags available to filter with.
-
unrecognized escape sequence typically refers to c# code that blows up when you forget a \ before " or \. IE...
string test = "string\\string"; would be valid whereas...
string test = "string\string"; would not and throw an unrecognized escape sequence.
Have you edited the code behind or added some modules of your ...