ktaranov/naming-convention

Invalid code: static const

snwflake opened this issue · 2 comments

In point 4 Do not use Screaming Caps for constants or readonly variables: your example uses

// Correct
public static const string ShippingType = "DropShip";

which is invalid. const implies static and is therefore neither needed, nor allowed.

Hi, @snwflake. Thanks for issue. Could you prepare pull request for it?

done.
#15