I know I could have an attribute but that\'s more work than I want to go to... and not general enough.
I want to do something like
class Whotsit {
The GetProperties on the Type class will give you the list of properties on that type.
Type t = whotsit.GetType(); PropertyInfo[] pis = t.GetProperties();