Lecture overview -- Keyboard shortcut: 'u'  Previous page: Constructors and initialization order -- Keyboard shortcut: 'p'  Next page: Visibility modifiers in C# -- Keyboard shortcut: 'n'  Lecture notes - all slides together  Annotated slide -- Keyboard shortcut: 't'  Textbook -- Keyboard shortcut: 'v'  Alphabetic index  Help page about these notes  Course home    Specialization, Extension, and Inheritance - slide 26 : 40

Constructors and initialization order: Example
Instantiation of class C that inherits from class B that inherits from class A
c.cs
Initializers and constructors of class C.
b.cs
Initializers and constructors of class B.
a.cs
Initializers and constructors of class A.
init.cs
The class Init and the method InitMe.
app.cs
A program that instantiates and initializes class C.
output
The output that reveals the initialization order.