fix #14 remove invalid qualifier static

This commit is contained in:
snwflake
2019-03-09 20:02:43 +01:00
parent d94309fa57
commit 7cc1c1dbdc
@@ -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.***