Skip to main content

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

Required fields*

1
  • I did this for the sake of sanity. I had classes with hundreds of properties. After a month I'd have to add more in. Using structures let me logically group them. I made a code generator with a properties table. I'd add properties to structures then generate all the code including utility methods, like to clear all values in a group, or import field values from a table, etc. Also, some property groups would be copied to other classes. Execution speed was unimportant (end of day batch processing). Coding ease was. But it may all boil down to personality. I tend to box an label a lot. Commented Nov 21, 2015 at 17:51