I'd like to execute the static constructor of a class (i.e. I want to "load" the class) without creating an instance. How do I do that?

Bonus question: Are there any differences between .NET 4 and older versions?

Edit:

  • The class is not static.
  • I want to run it before creating instances because it takes a while to run, and I'd like to avoid this delay at first access.
  • The static ctor initializes private static readonly fields thus cannot be run in a method instead.
link|improve this question

feedback

6 Answers

up vote 3 down vote accepted

Just reference one of your static fields. This will force your static initialization code to run. For example:

public class MyClass {
  private static readonly someStaticField;

  static MyClass() { someStaticField = ... }

  // any no-op method call accepting your object will do fine
  public static void TouchMe() { Equals(someStaticField, null); }
}

Usage:

// initialize statics
MyClass.TouchMe();
link|improve this answer
feedback

The other answers are excellent, but if you need to force a class constructor to run without having a reference to the type (ie. reflection), you can use:

Type type = ...;
System.Runtime.CompilerServices.RuntimeHelpers.RunClassConstructor(type.TypeHandle);
link|improve this answer
Does that run the static ctor? The class does not have a public constructor. Also, is this safe in that it does not cause a ctor to run twice, possibly? – mafutrct Apr 16 '10 at 16:49
Yes, it runs the static ctor. It is also safe, the CLR will only let the static ctor be executed once. – Gary Linscott Apr 16 '10 at 16:54
Indeed, this method is explicitly provided for compiler writers to ensure deterministic initialization: blogs.msdn.com/cbrumme/archive/2003/04/15/51348.aspx – Ruben Apr 16 '10 at 17:01
Interesting. But cbrumme does not seem to explicitly state that the cctor gets called executed once, or did I miss that? I do like this solution, but I'd like to get this guaranteed before I accept. – mafutrct Apr 17 '10 at 13:43
Followup question: stackoverflow.com/questions/2658561 – mafutrct Apr 17 '10 at 13:50
feedback

There is no need to do this, the whole point of a static constructor is that it runs once when the class is first initialised at first access. If you want to run something on demand, then consider adding your initialisation code into a public method that is called by the constructor. You can then call this method whenever you like. But I'm not sure why you would want to do this?

link|improve this answer
This fails in my case because there are static readonly fields. – mafutrct Apr 16 '10 at 15:17
feedback

The cctor (static constructor) will be called whenever one of the following occurs;

  1. You create an instance of the class
  2. Any static member is accessed
  3. Any time before that if BeforeFieldInit is set

If you want to explicitly invoke the cctor, assuming you have other static members, just invoke/access them.

If you are not doing anything very interesting in your cctor, the compiler may decide to mark it BeforeFieldInit, which will allow the CLR the option to execute the cctor early. This is explained in more detail here: http://blogs.msdn.com/davidnotario/archive/2005/02/08/369593.aspx

link|improve this answer
feedback

The static constructor runs automatically the first time you access the class. There is no need (or capability) to 'run' it yourself.

link|improve this answer
1  
Not quite true... it can run later: msmvps.com/blogs/jon_skeet/archive/2010/01/26/… – Marc Gravell Apr 16 '10 at 15:15
3  
I am constantly amazed by the number of obscure language features which I have never heard of, will probably never intentionally use, but which will probably bite me in the ass because I am not aware of them... – Ray Apr 16 '10 at 15:23
I want to run it earlier because it takes a long time (see edited question). – mafutrct Apr 16 '10 at 15:28
makes sense - create a "load()" method on your static class and call it whenever you want to. Just be sure to using locking and flags (or whatever) if necessary so it doesn't get loaded multiple times. – Ray Apr 16 '10 at 15:36
@Ray: A load method can't initialize readonly fields though. :\ – mafutrct Apr 16 '10 at 15:39
show 3 more comments
feedback

As others have said, static constructors run automatically. If you need to be explicit, maybe you should refactor it into a static method which you can run explicitly?

Explicitly calling a static method would also, of course, ensure that the static constructor had been executed.

edit

Static constructors are run when any static members are referenced. You could simply create a dummy method called initialize which did nothing but ensure that the framework calls the static constructor.

link|improve this answer
(see edits in OP) – mafutrct Apr 16 '10 at 15:29
See comments to Ray's answer about the dummy method. – mafutrct Apr 16 '10 at 15:38
feedback

Your Answer

 
or
required, but never shown

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