Static constructor

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Is there any way to make the Designer invoke a static constructor when in
Design mode?

Thanks.
 
A static ctor will run when the first member or function in the class is
accessed, so if the designer accesses anything in the class, the ctor should
be running.

-Chris
 
Back
Top