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?
|
I'm calling the static ctor of a class using this code:
Can this cause the cctor to be run twice?
| ||||
|
feedback
|
|
No, it runs the static constructor only once, even if you call
This code prints :
| |||||||||||||||
feedback
|