get tagged properties of class using reflection
Hi there,
I am very badly stuck in a problem where i am trying to retrieve properties of a class which are tagged by custom attribute which has no named and positional parameter, is it possible to get data without those parameters? here is the problem
[SuitProperty]
public new Color BackColor {
get {return base.BackColor;}
set {base.BackColor = value;}}
i am trying to get properties with relection, but not i am not sucessful,
Type t = ((ISuitControl)control).GetType();
PropertyInfo[] properties = t.GetProperties();
foreach (PropertyInfo property in properties)
please need urgent help
Baby Prgrammer
__________________
Baby Prgrammer
|