I use something like this,
var propertyinfo = class_simple.GetProperties(BindingFlags.DeclaredOnly | BindingFlags.Instance | BindingFlags.Public));
And i get all the public properties of the class_simple along with extensiondata.
Now, how do I actually skip this extensiondata and use other properties by looping through the propertyinfo ?
Thanks in advance for your suggestions.
Assuming that
ExtensionDatais the name of a property in your class: