Tagged Questions
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 ...
15
votes
6answers
595 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 ...
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
348 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
682 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
161 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
241 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
409 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
755 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
108 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
110 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
268 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
519 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
294 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
209 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 )
...
2
votes
3answers
248 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
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
516 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.
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
161 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
246 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
94 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
4answers
317 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 ...