Hey All,
I am trying to do something a little different, and am able to use Type.GetFields in order to get a list of fields that I want. However, one of the fields coming through is "PropertyChange dEventHandler", because I am using INotifyProperty Changed.
What I am wondering is, when asking for all the fields via reflection, can I say "Do not give me delegates", as the definition for System.Componen tModel.Property ChangedEventHan dler states that it is a delegate.
Basically I do not want the delegates to get through.
Thanks!
I am trying to do something a little different, and am able to use Type.GetFields in order to get a list of fields that I want. However, one of the fields coming through is "PropertyChange dEventHandler", because I am using INotifyProperty Changed.
What I am wondering is, when asking for all the fields via reflection, can I say "Do not give me delegates", as the definition for System.Componen tModel.Property ChangedEventHan dler states that it is a delegate.
Basically I do not want the delegates to get through.
Thanks!
Comment