Hi again, now i have a more theorical question related with events and reflection. The question is: "Is or isn't possible to get the field of type delegate associated with an event via EventInfo?"
Basically when you define an event (implicitly), the compiler adds a private delegate field to your class (the delegate is of the same type of the delegate associated with the event you just declared, obviously). Is it possible to get that field via reflection, more specifically, via EventInfo?
And when you define an event explicitally?
Thanks in advance. cheers ;)