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".
This commit is contained in:
OJacot-Descombes
2019-02-27 22:16:07 +01:00
committed by GitHub
parent 701ca1c478
commit 6b1d60426a
@@ -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