Tagged Questions
15
votes
6answers
663 views
What's the best way to ensure a base class's static constructor is called?
The documentation on static constructors in C# says:
A static constructor is used to
initialize any static data, or to
perform a particular action that needs
performed once only. It is ...
12
votes
2answers
273 views
How does C# know when to run a static constructor?
I don't believe the generated code would check if the class has been initialized everytime it access a static member (which includes functions). I believe checking every access would be inefficient. I ...
10
votes
1answer
300 views
Static constructor on a .NET interface is not run
You can define a static constructor on an interface in .NET in IL. However, if you do so, the static constructor is not run when you run a method on the interface:
.method public static void Main() {
...
6
votes
1answer
372 views
override metadata in static constructor?
I have a class that inherits the TextBox Class, call it MyTextBox
I'd like to redefine the default Background value for this class.
So I looked for a way to do so and found a good option: call ...
5
votes
6answers
1k views
How can I run a static constructor?
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 ...
4
votes
2answers
266 views
Forcing class load
Is there a way in C# or .net IL to force a class that has a type initializer (static constructor) to load itself, without accessing any of its parameters?
Assuming I've got the class
public static ...
3
votes
1answer
41 views
Why the order of entering static .ctors is different from instance .ctors in inherited classes?
Why var b = new B() firstly enters static B() .ctor and than static A() .ctor and not vice versa like the instance constructors does (public A() and than public B())?
public class A
{
static A() ...
3
votes
2answers
135 views
is there a standard way for .NET class loaders to work?
I'm wondering if there is there a standard way for .NET class loaders to work?
Say i compile this code:
Option Strict On : Option Explicit On
Module Module1
Sub Main()
...
3
votes
2answers
283 views
How do I explicitly run the static constructor of an unknown type? [closed]
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 ...
3
votes
3answers
321 views
C# static garbage collector?
I have a simple class which has a static constructor and a instance constructor. Now when i initialized the class , both static and instance constructor are called. Only static is referred once in a ...
2
votes
2answers
110 views
Strange behaviour with static fields
I am trying to get a custom enum class working which should enable me to create enums with user friendly identifiers and an arbitrary associated value. so far so good:
public class EnumBase<T, ...
1
vote
3answers
162 views
How do I implement a static dictionary<T> with parameters at Runtime in C#?
I have the following code:
public static class ScraperMasterUriDetails
{
public static Dictionary<Guid, string> MasterUriDetails;
}
However I've decided that I need to add ...
1
vote
3answers
252 views
What is the earliest entrypoint that the CLR calls before calling any method in an assembly?
In the past years I've occasionally been wondering what equivalent of the (in)famous DLL_PROCESS_ATTACH was available in the .NET world. Any documentation I have says, slightly simplified, that the ...
1
vote
3answers
2k views
Type initializer (static constructor) exception handling
I'm writing a WCF service in C#. Initially my implementation had a static constructor to do some one-time initialization, but some of the initialization that is being done might (temporarily) fail.
...
0
votes
2answers
102 views
Can a static constructor reduce the performance of accessing static methods?
A static constructor is executed the first time you access a static member. Knowing this, I have several questions:
Does this mean that every time I access a static method, the runtime must check ...
0
votes
2answers
105 views
In what order are the static constructors of parent and child classes called?
In what order are the static constructors of parent and child classes called?
class A { static A() { MessageBox.Show("Yaht"); } }
class B : A { static B() { MessageBox.Show("Zee"); } }
class C : ...
0
votes
4answers
350 views
Tracking Static Constructor Execution
I'm running into a problem here where a static constructor of one of my classes is being called before it should be. (I.e, DI/IoC isn't set up and it's getting null/exceptions back from the service ...
0
votes
4answers
260 views
Is it possible to call an instance method from a static constructor in WCF service?
Is it possible to call an instance method from a static constructor in WCF service? Is there something like current context through which I can get the current instance of MyService?
public class ...