Guess the following sectionCodeI expect more than 90% of people will not give the correct answer. Void Main ()
{
Initseqbase x = NewInitseqchild ();
}
Public Class Initseqbase
{
Public Static Nothing _ sfield = NewNothing ("Base Static Field initializer");
Static Initseqbase ()
{
Console. writeline ("Base Static constructor");
}
Public Nothing insfield = New Nothing ("Base instance field initializer");
PublicInitseqbase ()
{
Console. writeline ("Base instance constructor");
}
}
Public Class Initseqchild: initseqbase
{
Public Static Nothing _ sfield = New Nothing ("Child static field initializer");
StaticInitseqchild ()
{
Console. writeline ("Child static constructor");
}
Public Nothing insfield = New Nothing ("Child instance field initializer");
Public Initseqchild ()
{
Console. writeline ("Child instance constructor");
}
}
Public ClassNothing
{
PublicNothing (StringS)
{
Console. writeline (s );
}
}The answer is here (visible after selection, in a white font ):
Child static field initializer
Child static Constructor
Child instance field initializer
Base Static Field initializer
Base Static Constructor
Base instance field initializer
Base instance Constructor
Child instance Constructor
Thank you for your participation!
Published by wiz