Check out example codes for "static class constructor c#". It will help you in understanding the concepts better.
Code Example 1
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;
}
}
Learn ReactJs, React Native from akashmittal.com