I am wondering, generally in C#, the constructor concept is, base class cons should execute first, but why is that I am seeing derived class static constructor getting called and then base class cons. Could someone please explain ? :(
|
|
Static constructors initialize the class itself, which is to say that they must be called before any other static members are accessed, and before the creation of any instances of the class. As for the ordering of calls to static constructors within a class hierarchy, you should consider that undefined. From the MSDN page on static constructors:
|
|||||||
|
|
Well, that's the whole point of static constructors; it has nothing to do with inheritance. To quote MSDN
You can declare their body, but don't need to worry about when they will be called (nor does the framework give you any guarantee in that regard, except that it will run before any instance of the class at hand has been created). Edit Oh, there is something else you should be aware of, and it has to do with generics, even though it might be obvious. Consider this snippet:
Here the static constructor will be executed for whatever
|
|||||||||||
|