From 6b1d60426a56762bcc6171b0a83905d4e133bceb Mon Sep 17 00:00:00 2001 From: OJacot-Descombes Date: Wed, 27 Feb 2019 22:16:07 +0100 Subject: [PATCH] Update C# Coding Standards and Naming Conventions.md Fixed text for exception in point 8 "Do not use Underscores in identifiers" to include "private fields" instead of "private static variables". --- 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 0d818d0..ea8c5cc 100644 --- a/C# Coding Standards and Naming Conventions.md +++ b/C# Coding Standards and Naming Conventions.md @@ -109,7 +109,7 @@ UIControl uiControl; ***Why: consistent with the Microsoft's .NET Framework. Caps would grap visually too much attention.*** -#### 8. Do not use Underscores in identifiers. Exception: you can prefix private static variables with an underscore: +#### 8. Do not use Underscores in identifiers. Exception: you can prefix private fields with an underscore: ```csharp // Correct