C Sharp (C#) - Inheritance
What will be the output of the following C# code?
class Base {
public Base() { Console.WriteLine("Base constructor"); }
}
class Derived : Base {
public Derived() : base() { Console.WriteLine("Derived constructor"); }
}
static void Main() {
Derived d = new Derived();
}