In what order are the static constructors of parent and child classes called?

class A     { static A() { MessageBox.Show("Yaht"); } }
class B : A { static B() { MessageBox.Show("Zee");  } }
class C : A { static C() { MessageBox.Show("Zey");  } }

static void Main()
{
    B b = new B();
    C c = new C();
}

I could test it right now... if I had a compiler available.

link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

Output:

Zee
Yaht
Zey

..........

link|improve this answer
+1, I get the same behaviour. Now, why? Wouldn't it make more sense for the parent static constructors to be called first? What if B referenced some static field in A that wasn't initialized yet? – Cameron Mar 9 '11 at 0:37
In that case, A's static constructor will run before the field is referenced. – Mark Cidade Mar 9 '11 at 0:41
Actually, I was hoping the parent's static constructor could be called more than once. – Eduardo León Mar 9 '11 at 13:35
The static constructor is only run the first time the class is accessed—in this case when A's instance constructor is called from B's instance constructor. – Mark Cidade Mar 9 '11 at 22:16
feedback

It seems the parent class static constructors are not necessarily called first, but they are always called before the child static constructors refer to static fields of the parent.

This makes allows parent static constructors to change the state of their class before any dependent code in child classes runs.

link|improve this answer
I ran the above program and the child static constructor ran before the parent. – Mark Cidade Mar 9 '11 at 0:35
@Mark: You're right, I just did the same. I spoke too soon! Will delete answer in a second – Cameron Mar 9 '11 at 0:36
feedback

Your Answer

 
or
required, but never shown

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