Does the order of the superconstructor call in the initializer list changes the invocation order of the superclass constructor and other initializers?
In other words in which order the code will be executed? Pick the right answer:
B#super,A#ctor,B#bar,B#ctorB#bar,B#super,A#ctor,B#ctorB#super,B#bar,A#ctor,B#ctorB#super,B#bar,B#ctor,A#ctor
Find the answer and the runnable version here 😉