Default constructor in C#


A Constructor in C# is invoked automatically when an object gets created. The constructor has the same name as that of the class, for example −

public class Department {
   public Department () {
      Console.WriteLine("Default Constructor! ");
   }
}

The following is the code that shows the usage of default constructor in C#. The constructor invokes immediately when the object gets created.

Department dept1 = new Department ();

A default constructor is a constructor that has no argument, for example −

Department () {
}

Let us see the complete example to learn how to work with default contructors.

Example

 Live Demo

using System;
public class Department {
   public Department () {
      Console.WriteLine("Constructor Invoked");
   }
   public static void Main(string[] args) {
      // object
      Department dept1 = new Department ();
   }
}

Output

Constructor Invoked

Samual Sam
Samual Sam

Learning faster. Every day.

Updated on: 23-Jun-2020

209 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements