✏️ Explanatory Question

What is static constructor?

👁 737 Views
📘 Detailed Answer
💡

Answer with Explanation

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