When I have class containing a static constructor, is that constructor called when the assembly containing the class is first loaded or when the first reference to that class is hit?
|
When the class is accessed for the first time. Static Constructors (C# Programming Guide)
|
|||||||
|
|
This is a pretty good explanation. It's not quite as simple as you might expect! |
|||||
|
|
|
The static constructor is called before you use anything in the class, but exactly when that happens is up to the implementation. It's guaranteed to be called before the first static member is accessed and before the first instance is created. If the class is never used, the static constructor is not guaranteed to be called at all. |
|||||||||
|
|
for complete solution, this link may helpful. difference between static and normal constructor |
|||
|
|