I\'d like to execute the static constructor of a class (i.e. I want to \"load\" the class) without creating an instance. How do I do that?
Bonus question: Are there
The static constructor runs automatically the first time you access the class. There is no need (or capability) to 'run' it yourself.