Kagamin пишет:
Weed Wrote:There does not need a static initialization of static members of the class. There must be able to create objects of classes at compile time.Well, these objects should be placed in some static variables, right?
Yes
Static variables are initialized with static constructors.
Yes, static variables of class are initialized with static constructor of class.
Global variables are static members of module, wich is similar to class and also has static constructor.
So what?