Why var b = new B() firstly enters static B() .ctor and than static A() .ctor and not vice versa like the instance constructors does (public A() and than public B())?

public class A
{
    static A() {}
    public A() {}
}

public class B : A
{
    static B() {}
    public B() {}
}
link|improve this question

71% accept rate
3  
This is basically the same as Why aren't all static constructors called in C#, and the answer is basically the same: Static constructors are not inherited. – Raymond Chen Feb 4 at 13:57
feedback

1 Answer

up vote 2 down vote accepted

Technically the instance constructor of B is entered first. But the first thing it does is calling the constructor of A and only then goes to the user defined body.

So I assume that directly before the constructor of B is entered the static constructor of B needs to run.

Then the constructor of B calls the constructor of A, which triggers the static constructor of A.

link|improve this answer
1  
The rules for static constructors are spelled out in the language specification. Specifically, static constructors run when "an instance of the class type is created [or] any of the static members of the class type are referenced." Note that "a static member of a derived type is referenced" is not on the list. – Raymond Chen Feb 4 at 13:56
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.