C# Program using the default constructor
In this program, You will learn how to implement the default constructor in C#.
public Test(){
//statement
}
Example: How to implement default constructor in C#.
using System;
public class Test
{
public Test()
{
Console.WriteLine("Default constructor is called here");
}
void msg()
{
Console.WriteLine("msg method is called here");
}
public static void Main(string[] args)
{
Test test = new Test();
test.msg();
}
}
Output:
Default constructor is called here
msg method is called here