pascal-case

There are 1 entries for the tag pascal-case

Splitting Pascal/Camel Cased Strings

Found this post in RossCode which mentions a blog post that discusses how to bind enumerations to drop downs, something I’ve done quite often. RossCode has an issue with using this approach personally because typically, the display text of a drop down should have spaces between words, which is not allowed in an enum value. For example... public enum UglinessFactor { ButtUgly, Fugly, NotSoBad, } In the preceding enumeration, you’d probably want the dropdown to display “Butt Ugly” and not...