diff --git a/C# Coding Standards and Naming Conventions.md b/C# Coding Standards and Naming Conventions.md index 61afea7..eb2439a 100644 --- a/C# Coding Standards and Naming Conventions.md +++ b/C# Coding Standards and Naming Conventions.md @@ -414,7 +414,7 @@ public class BarcodeReadException : System.Exception ***Why: consistent with the Microsoft's .NET Framework and easy to read.*** -#### 26. Do use suffix Any, Is, Have or similar keywords for boolean identifier : +#### 26. Do use prefix Any, Is, Have or similar keywords for boolean identifier : ```csharp // Correct