Is RunClassConstructor guaranteed to run a type's static constructor only once?
- by mafutrct
I'm calling the static ctor of a class using this code:
Type type;
System.Runtime.CompilerServices.RuntimeHelpers.RunClassConstructor(type.TypeHandle);
Can this cause the cctor to be run twice?