How do I identify class properties that are public with an enum return type?
I have automatically generated service references and I need to analyze them to identify classes with public properties that return enums. This is for an asp.net project that was originally serializing enums as int and was converted to string, so I’m trying to produce a list of enums and their int/string values. I just copied… Read More How do I identify class properties that are public with an enum return type?