class A
{
public A()
{
Console.WriteLine("Me A");
}
}
class B : A
{
public B()
{
Console.WriteLine("Me B");
}
}
If an object of class B is created which constructor will fire first?
No comments:
Post a Comment