What is static constructor?

Long Answer
Views 729

Answer:

Static constructor is used to initialize static data members as soon as the class is referenced first time.


class SimpleClass
{
    // Static variable that must be initialized at run time.
    static readonly long baseline;

    // Static constructor is called at most one time, before any
    // instance constructor is invoked or member is accessed.
    static SimpleClass()
    {
        baseline = DateTime.Now.Ticks;
    }
}


A static constructor is used to initialize any

Related Articles:

This section is dedicated exclusively to Questions & Answers. For an in-depth exploration of C# Programming Language, click the links and dive deeper into this subject.

Join Our telegram group to ask Questions

Click below button to join our groups.