How to call base class parameterized constructor first in c#?

How to call base class parameterized constructor first in c#?

We can use the base keyword to call base class parameterized constructor first.

The example and the output result as given below.

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) : base(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");
        }
    }
}


The Output as below,


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

How to call base class parameterized constructor first in c#? How to call base class parameterized constructor first in c#? Reviewed by Anil Singh on 7:30 AM Rating: (5)
www.code-sample.com/. Powered by Blogger.
^