C# - Create Static Constructor in the Structure

Here, we are going to learn how to create static constructor in the structure using C# program?
Submitted by Nidhi, on November 08, 2020 [Last updated : March 22, 2023]

Static constructor in structure

Here, we will create a structure with the static and non-static constructor. The static constructor is called before the first instance of the structure gets created. We cannot create a parameter less non-static constructor in a structure.

C# program to create static constructor in the structure

The source code to demonstrate the static constructor inside the structure is given below. The given program is compiled and executed successfully on Microsoft Visual Studio.

//C# program to demonstrate the 
//static constructor in the structure

using System;
public struct StructDemo
{
    static StructDemo()
    {
        Console.WriteLine("Static constructor called");
    }

    public StructDemo(int dummy)
    {
        Console.WriteLine("Non-Static constructor called");
    }
}

class Test
{
    static void Main(string[] args)
    {
        Console.WriteLine("Main() method called");

        StructDemo S1 = new StructDemo(1);
        StructDemo S2 = new StructDemo(2);
    }
}

Output

Main() method called
Static constructor called
Non-Static constructor called
Non-Static constructor called
Press any key to continue . . .

Explanation

In the above program, we created a structure StructDemo and a class Test. The StructDemo structure contains a static and non-static constructor. The static constructor is always called before the first instance of the structure gets created.

Now look to the Test class that contains the Main() method. The Main() method is the entry point for the program. Here, we printed a message "Main() method called" on the console screen. Then we created the two instances then a static construct gets called after then non-static constructor called for both instances.

C# Basic Programs »


Comments and Discussions!

Load comments ↻






Copyright © 2024 www.includehelp.com. All rights reserved.