Simon Luckenuik
Results
2
comments of
Simon Luckenuik
Only efficient way I have found so far for that scenario is to rely on some Bootstrapping.Init static method which triggers a static ctor in that same class (init once),...
Yes called for every execution of every function, something similar to that: ``` public static class Bootstrapping { static Bootstrapping() { // Init here, called once because of static ctor....