Tagged Questions
The static-constructor tag has no wiki summary.
32
votes
7answers
505 views
Why doesn't the CLR always call value type constructors
I have a question concerning type constructors within a Value type. This question was inspired by something that Jeffrey Richter wrote in CLR via C# 3rd ed, he says (on page 195 - chapter 8) that you ...
28
votes
14answers
24k views
static constructors in C++? need to initialize private static objects
I want to have a class with a private static data member (a vector that contains all the characters a-z). In java or C#, I can just make a "static constructor" that will run before I make any ...
15
votes
6answers
596 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 ...
13
votes
5answers
553 views
What is the rationale for not having static constructor in C++?
What is the rationale for not having static constructor in C++?
If it were allowed, we would be initializing all the static members in it, at one place in a very organized way, as:
//illegal C++
...
10
votes
1answer
294 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() {
...
8
votes
3answers
3k views
Creating a singleton ChannelFactory<T> and reusing for client connections
In our SharePoint/ASP.NET environment we have a series of data retriever classes that all derive from a common interface. I was assigned the task of creating a data retriever that could communicate ...
8
votes
5answers
1k views
Using Static Constructor (Jon Skeet Brainteaser)
As a relative newbie I try to read as much as I can about a particular subject and test/write as much code as I can. I was looking at one of Jons Brainteasers (question #2) and my output was ...
6
votes
1answer
350 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 ...
6
votes
3answers
1k views
Is a Java static block equivalent to a C# static constructor?
What is the real difference between a C# static constructor and a Java static block?
They both must be parameterless.
They are both called only once, when the related class is first used.
Am I ...
5
votes
3answers
690 views
What is use of static constructors
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
5
votes
3answers
1k views
Assembly.GetCallingAssembly() and static constructors?
Ok, so I just ran into the following problem that raised an eyebrow.
For various reasons I have a testing setup where Testing classes in a TestingAssembly.dll depend on the TestingBase class in a ...
4
votes
4answers
60 views
Constructor in a class of static methods
I've got a class of static methods that can be performed on a map held within the class, and I want the map to be set up when the class is called. I've tried using a private contructor, but it isn't ...
4
votes
4answers
162 views
.Net : Do static constructors get called when a constant is access?
So here is what I'm thinking...
public class MyClass
{
public const string MyConstant = "MyConstantValue";
private static MyClass DefaultInstance;
static MyClass()
{
...
4
votes
2answers
244 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 ...
4
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
4answers
410 views
Controlling when the Static Constructor is called
In my custom attribute's static constructor, I search the loaded assembly for all classes decorated with my attribute and perform some action on them.
I would like the static constructor to be called ...
4
votes
3answers
756 views
Assigning to static readonly field of base class
public class ClassA
{
public static readonly string processName;
}
public class ClassB : ClassA
{
static ClassB()
{
processName = "MyProcess.exe";
}
}
I am getting an error ...
3
votes
4answers
109 views
How to trigger a static constructor
code:
class Base<T,U> where T:Base<T,U>,new() where U :class
{
protected static U _val = null;
internal static void ShowValue()
{
if(_val == null)new T(); //Without ...
3
votes
4answers
111 views
Why aren't all static constructors called in C# (i.e. those of the parent classes)?
I have three classes, Base, Derived and Final. Derived derives from Base and Final derives from Derived. All three classes have a static constructor. Class Derived as a public static method called ...
3
votes
2answers
128 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
269 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
310 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 ...
3
votes
4answers
522 views
Public constructor and static constructor
I am reading a code in C# that uses two constructors. One is static and the other is public. What is the difference between these two constructors? And for what we have to use static constructors?
3
votes
1answer
296 views
Is RunClassConstructor guaranteed to run a type's static constructor only once?
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?
3
votes
4answers
212 views
Why isn't the static constructor of the parent class called when invoking a method on a nested class?
Given the following code, why isn't the static constructor of "Outer" called after the first line of "Main"?
namespace StaticTester
{
class Program
{
static void Main( string[] args )
...
3
votes
6answers
256 views
Returning in a static initializer
This isn't valid code:
public class MyClass
{
private static boolean yesNo = false;
static
{
if (yesNo)
{
System.out.println("Yes");
return; // ...
2
votes
3answers
249 views
Why Are Parentheses Required on C# Static Constructors?
Consider:
class Foo
{
static Foo()
{
// Static initialisation
}
}
Why are the () required in static Foo() {...}? The static constructor must always be parameterless, so why ...
2
votes
6answers
291 views
Imitate a static constructor in C++
This a question related to the initialization of objects in C++
I have a group of classes (not instances), inheriting from a common base class, and I need them to register info about themselves in a ...
2
votes
2answers
109 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, ...
2
votes
3answers
519 views
C# Instance Constructor vs Static Constructor
What are the differences between the two? I've only used one kind of constructor and I believe it's the static constructor. Only familiar with C++ and Java.
2
votes
3answers
2k views
Static initializer in Objective-C upon Class Loading
I am trying to build something to dynamically instantiate an object from class-name similar to how Java's Class.forName method works, e.g.
Class klass = Class.forName("MyClass");
Object obj = ...
1
vote
2answers
171 views
in C# does Static constructor run for each initialization of object, or only once?
in my Class I have a static dictionary of strings object which contains a big number of Items (it reads from a file and initial them) I wrote a static constructor to do so and it takes a few seconds, ...
1
vote
3answers
284 views
c# static constructor not called from derived class
class Bus<T>
{
static Bus()
{
foreach(FieldInfo fi in typeof(T).GetFields())
{
if(fi.FieldType == typeof(Argument))
{
...
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
248 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
5answers
68 views
Pass argument to a static constructor in Java?
I'm trying to initialize a static class, with an argument, and then run some more static code in that class.
I'm aware of the static block, but it seems it can't take any arguments.
Is there a way to ...
0
votes
2answers
95 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
100 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
319 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
1answer
394 views
Freestanding ARM C++ Code - empty .ctors section
I'm writing C++ code to run in a freestanding environment (basically an ARM board). It's been going well except I've run into a stumbling block - global static constructors.
To my understanding the ...
0
votes
4answers
247 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 ...