Unrecognized escape sequences produce C# with Example



Unrecognized escape sequences produce C# with Example

compile-time errors 
The following examples will not compile: 
string s = "\c"; 
char c = '\c'; 
Instead, they will produce the error Unrecognized escape sequence at compile time. 
 

0 Comment's

Comment Form

Submit Comment