I need to use the GetProperties method so I can test whether any properties in a particular class has a specified custom attribute. However it doesn\'t appe
Add this to your using statements:
using System.Reflection;
Then you can use obj.GetType().GetRuntimeProperties() method. This method returns all properties defined on the specified type, including inherited, non-public, instance, and static properties. Keep in mind that this behavior is slightly different than the behavior of GetProperties() which is to return only the public properties.