Possible Duplicate:
How do I invoke a static constructor with reflection?

I've got some initialization code in the static constructor of various classes. I can't create instances, nor do I know the types in advance. I would like to ensure the classes are loaded.

I tried this:

fooType.TypeInitializer.Invoke (new object[0]);

But got a MemberAccessException: Type initializer was not callable.

I'm assuming this is because the cctor is private? Is there a way to fix this without changing the architecture?

Edit: I found a workaround using RuntimeHelpers.RunClassConstructor, but this way seems to be barely documented in the MSDN and I'm not sure if it is a hack or a reasonable, prod system like way.

link|improve this question

Not dupe: This question is also about the exception and how to avoid it, as well as the reasonability of using RunClassConstructor at all. – mafutrct Dec 20 '10 at 13:05
1  
@mafuctr: Did you try fooType.TypeInitializer.Invoke(null, null);, as is mentioned in that answer? – Ani Dec 20 '10 at 13:09
Why is the automatic call to the static constructor of your class done by the framework not working for you? – Doc Brown Dec 20 '10 at 13:17
@Ani: That does work, but I've got a few questions about this... – mafutrct Dec 20 '10 at 13:19
feedback

closed as exact duplicate by Doc Brown, Ani, decyclone, cdhowie, Graviton Dec 22 '10 at 1:50

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

2 Answers

up vote 3 down vote accepted

I'm not sure why this works, but as far as I reason (with help from Skeet) if i have a static class

public static class Statics1
{
    public static string Value1 { get; set; }

    static Statics1()
    {
        Console.WriteLine("Statics1 cctor");
        Value1 = "Initialized 1";
    }
}

The code:

Type staticType = typeof (Statics1);
staticType.TypeInitializer.Invoke(null);
or
staticType.TypeInitializer.Invoke(new object[0]);

will throw with an exception, because somehow this resolves to the .ctor, instead of the .cctor of the class.
If I use an explicitly static class, it is treated like an abstract sealed class, so the exception is that an abstract class cannot be instantiated, and if I use a regular class with a static constructor, the exception is that the type initializer is not callable.

But if I use the Invoke overload with two parameters (instance, params), like this:

Type staticType = typeof (Statics1);
staticType.TypeInitializer.Invoke(null, null);

explicitly stating that I am invoking a static method (that's the meaning of the first null - no instance == static), this works and initializes the class.


That said, static constructors are strange beasts. Invoking one in this way will call the static constructor even if it was already executed, i.e., this code:

Console.WriteLine(Statics1.Value1);

Type staticType = typeof (Statics1);
staticType.TypeInitializer.Invoke(null, null);

will call the static constructor twice. So if your cctors have potentially important sideeffects, such as creating files, opening databases, etc, you might want to rethink this approach.

Also, even though I prefer static constructors for reasons of readability, from a performance perspective, field initializers are a bit faster than static constructors

link|improve this answer
Excellent! This answers most the questions I was going to ask after Ani's comment to the OP. – mafutrct Dec 20 '10 at 13:23
Re that latter part (twice called), is there a way to avoid it? And what about stackoverflow.com/questions/2658561/… ... Could you add this as an answer there, since it looks like it behaves vastly different for Invoke(null) and Invoke(null, null)? – mafutrct Dec 20 '10 at 13:28
Actually, I would recommend using RuntimeHelpers.RunClassConstructor even if it is a bit more low-level and potentially version-dependant. – SWeko Dec 20 '10 at 13:35
feedback

EDIT: explicitly won't work as-is, as poster states can't know the types in advance. Leaving here as might help clarification for future readers ...

If I understand your needs correctly -- in similar circumstances I create a wrapper that references the static class but remains part of the test suite. You can then instantiate the wrapper and have the static initialized on demand. It'd mean you can leave the architecture unchanged, and keep the wrapper as part of the test framework.

public static class MyStatic
{
    public static string SomeToolMethod()
    {
        return "Hello";
    }
}

public class MyStaticWrapper // or proxy, technically?
{
    public static string SomeToolMethod()
    {
        return MyStatic.SomeToolMethod();
    }
}

fooType.TypeInitializer.Invoke(new MyStaticWrapper()); /// untested, not sure of syntax here
link|improve this answer
I can't quite follow, could you add a short example? – mafutrct Dec 20 '10 at 12:53
Sure, two ticks. – Tim Barrass Dec 20 '10 at 12:53
I'm afraid this fails because I would need to know all types in advance so I can call their static methods in the wrapper class. – mafutrct Dec 20 '10 at 13:07
Ok, cheers, will leave here as answer in case it helps future readers, have added a warning as header ... – Tim Barrass Dec 20 '10 at 13:13
feedback

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