Which of the following utilities can be used to compile managed assemblies into processor-specific native code? Ngen
Assume class B is inherited from class A. Which of the following statements is correct about construction of an object of class B?
While creating the object firstly the constructor of class A will be called followed by constructor of class B.
创建子类时候,父类构造函数默认会调用