can event properties be part of the interface?

  • Thread starter Thread starter puzzlecracker
  • Start date Start date
P

puzzlecracker

I have about 100 of this sort in my main clas, and I would like to put
them into interface:

in Main class:
public event onFooHandler OnFoo { add { m_dispatcher.onFoo +=
value; } remove { m_dispatcher.onFoo -= value; } }
....
 
Back
Top