Please explain me the use of static constructor, why and when we should create static constructor and is it possible to overload static constructor.

Thanks

link|improve this question

Good question.. – Pankaj Agarwal Dec 22 '10 at 9:08
feedback

3 Answers

up vote 5 down vote accepted

No you can't overload it; a static constructor is useful for initializing any static fields associated with a type (or any other per-type operations) - useful in particular for reading required configuration data into readonly fields, etc.

It is run automatically by the runtime the first time it is needed (the exact rules there are complicated (see "beforefieldinit"), and changed subtly between CLR2 and CLR4). Unless you abuse reflection, it is guaranteed to run at most once (even if two threads arrive at the same time).

link|improve this answer
thanks for reply. can you please provide me more details about your sentence "Unless you abuse reflection, it is guaranteed to run at most once".. what can do with reflection regarding static constructor.. – Rajesh Rolen- DotNet Developer Dec 22 '10 at 7:27
@Rajesh - find the method and call Invoke 20 times. – Marc Gravell Dec 22 '10 at 7:32
feedback

FRom Static Constructors (C# Programming Guide)

A static constructor is used to initialize any static data, or to perform a particular action that needs performed once only. It is called automatically before the first instance is created or any static members are referenced.

Static constructors have the following properties:

  • A static constructor does not take access modifiers or have parameters.
  • A static constructor is called automatically to initialize the class before the first instance is created
    or any static members are referenced.
  • A static constructor cannot be called directly.
  • The user has no control on when the static constructor is executed in the program.
  • A typical use of static constructors is when the class is using a log file and the constructor is used to write
    entries to this file.
  • Static constructors are also useful when creating wrapper classes for
    unmanaged code, when the constructor
    can call the LoadLibrary method.
link|improve this answer
thanks for quick and knowledgeable reply. – Rajesh Rolen- DotNet Developer Dec 22 '10 at 7:23
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.