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?
Friday, January 25, 2008
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment