Hi,
I need to find the type of the property that a custom attribute is applied to from within the custom attribute.
For example:
[MyAttribute]
string MyProperty{get;set;}
Given the instance of MyAttribute, how could I get a Type descriptor for MyProperty?
In other words, I am looking for the opposite of System.Type.GetCustomAttributes()