constructor interview questions in c#

Best Use of C# Parameterize Constructors [How To?]

Question:We know that Base class constructor called first. But if we creating object with parameters, and base class have both constructor default and parameter, then which constructor of base class called first.

namespace ConsoleNamespace
{
    class A
    {
        public A()
        {
            Console.WriteLine("class A::Constructor()");
        }
        public A(string name)
        {
            Console.WriteLine("class A::Constructor() with params name: "+ name);
        }
    }
    class B :A
    {
        public B()
        {
            Console.WriteLine("class B::Constructor()");
            Console.ReadLine();
        }
        public B(string name)
        {
            Console.WriteLine("class B::Constructor() with params name: " + name);
            Console.ReadLine();
        }
    }
    class Test
    {
        static void Main(string[] args)
        {
            B a = new B("Anil Singh");
        }
    }
}
Answers ::     class A::Constructor()
                    class B::Constructor() with params name: Anil Singh


The output look like




ANIL SINGH

Anil Singh is an author, tech blogger, and software programmer. Book writing, tech blogging is something do extra and Anil love doing it. For more detail, kindly refer to this link..

My Tech Blog - https://www.code-sample.com/
My Books - Book 1 and Book 2

Best Use of C# Parameterize Constructors [How To?] Best Use of C# Parameterize Constructors [How To?] Reviewed by Anil Singh on 7:30 AM Rating: (5)
www.code-sample.com/. Powered by Blogger.
^