I'm calling the static ctor of a class using this code:

Type type;
System.Runtime.CompilerServices.RuntimeHelpers.RunClassConstructor(type.TypeHandle);

Can this cause the cctor to be run twice?

link|improve this question

feedback

1 Answer

up vote 4 down vote accepted

No, it runs the static constructor only once, even if you call RunClassConstructor twice. Just try ;)

using System.Runtime.CompilerServices;
...

void Main()
{
    RuntimeHelpers.RunClassConstructor(typeof(Foo).TypeHandle);
    RuntimeHelpers.RunClassConstructor(typeof(Foo).TypeHandle);
    Foo.Bar();
}

class Foo
{
    static Foo()
    {
        Console.WriteLine("Foo");
    }

    public static void Bar()
    {
        Console.WriteLine("Bar");
    }
}

This code prints :

Foo
Bar

link|improve this answer
Is that true even if I call RunClassConstructor, then use the class for the first time (which would usually cause the cctor to run)? And is that guaranteed? The MSDN does not provide any information. – mafutrct Apr 17 '10 at 14:09
1  
Ah, ok, so it works in practice. Now if only some official paper would state that this is not going to be changed in the future... – mafutrct Apr 17 '10 at 14:14
BTW, I tested the code above with .NET 4.0, and there has been a few changes to the way types are initialized in .NET 4.0 (see Jon Skeet's blog post : msmvps.com/blogs/jon_skeet/archive/2010/01/26/…). So you might want to try it in 3.5 – Thomas Levesque Apr 17 '10 at 14:23
1  
Yes, but I'd really like an official paper to make sure it's not going to be changed randomly. That's the only concern left. – mafutrct Apr 22 '10 at 12:57
IMHO, it's unlikely that they will ever make such a breaking change... – Thomas Levesque Apr 22 '10 at 21:27
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

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