Q:

C# program to demonstrate the static constructor in the structure

0

C# program to demonstrate the static constructor in the structure

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Program:

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.

 

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

C# Basic Programs | Class, Object, Methods

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now
C# program to demonstrate the structure within a s... >>
<< C# program to demonstrate the array of structures...