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 c6bd924 commit 90529e7Copy full SHA for 90529e7
docs/csharp/language-reference/operators/snippets/patterns/LogicalPatterns.cs
@@ -67,7 +67,7 @@ private static void OrPattern()
67
68
// <SpecifyBindingOrder>
69
// Correct pattern. Force `and` before `not`
70
- static bool IsNotLowerCaseLetter(char c) => c is not (>= 'a' and <= 'z');
+ static bool IsNotLowerCaseLetterParentheses(char c) => c is not (>= 'a' and <= 'z');
71
// </SpecifyBindingOrder>
72
73
// <WithParentheses>
0 commit comments