If you take a look at http://www.c-sharpcorner.com/UploadFile/dhananjaycoder/activedirectoryoperations11132009113015AM/activedirectoryoperations.aspx, there is a huge list of properties for AD in one class.
What is a good way to refactor such a large list of (Related) fields? Would making seperate classes be adequate or is there a better way to make this more manageable?
Thanks
The first batch I’d extract are the eight that start with “MSEXCH” – that prefix indicates that the author felt there was something common about those properties. Beyond that, I don’t see much that naturally falls into easy groups, but if you find certain properties always being used together, putting them into the same class would probably be a good idea.