From a5ef9c04e3dc7517c55f0f1d694e84a54be52c8b Mon Sep 17 00:00:00 2001 From: vortex852456 Date: Fri, 20 Mar 2020 15:30:52 +0100 Subject: [PATCH] Update C# Coding Standards and Naming Conventions.md Changed wrong "suffix" to "prefix" --- C# Coding Standards and Naming Conventions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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