Some is not getting the rule about "Do not use hard coded constants in your code"
I run into this bit of code today:
        public enum OriginalFromMainFrame
        {
           Ten = 10,
            Twelve = 12,
            TwentyFive = 25
        }    
Some certainly heard about good software practices, but there is something left to be desired in the implementation...

Comments
Comment preview