diff --git a/C# Coding Standards and Naming Conventions.md b/C# Coding Standards and Naming Conventions.md index 2325657..2d7917e 100644 --- a/C# Coding Standards and Naming Conventions.md +++ b/C# Coding Standards and Naming Conventions.md @@ -64,9 +64,9 @@ string strName; ```csharp // Correct -public static const string ShippingType = "DropShip"; +public const string ShippingType = "DropShip"; // Avoid -public static const string SHIPPINGTYPE = "DropShip"; +public const string SHIPPINGTYPE = "DropShip"; ``` ***Why: consistent with the Microsoft's .NET Framework. Caps grap too much attention.***