We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2fe4138 commit a6cb496Copy full SHA for a6cb496
docs/csharp/language-reference/compiler-messages/cs1009.md
@@ -34,6 +34,8 @@ class MyClass
34
string hexEscapeSequence = '\X061';
35
// CS1009; an uppercase \U-style Unicode escape sequence must have exactly 8 hex digits
36
string uppercaseUnicodeEscape = '\U0061';
37
+ // CS1009; Unicode code points above U+10FFFF are invalid (well-formed but out of range)
38
+ string outOfRangeUnicode = "\U00110000";
39
}
40
41
```
0 commit comments