Skip to main content

Posts

Showing posts with the label 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()         { ...