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() {}
}