Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

32
votes
7answers
506 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 ...
4
votes
2answers
245 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
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 ...
2
votes
1answer
859 views

Try/catch blocks inside constructors

Is it a bad programming practice to have try/catch blocks inside constructors? Or does it make no difference as long as our programs handle typeinitializer exceptions gracefully. In C# if there are ...
1
vote
0answers
110 views

System.Data.OracleClient.OracleConnection throws type initializer exception

I would like to ask help for a problem that I am facing. I was running a long task within a website. Because it was taking some time to process the task, I decided to change the structure. Shortly, ...
0
votes
2answers
147 views

HttpRuntime..cctor takes forever to execute

Dead simple code: using System; using System.Diagnostics; using System.Web; using System.Web.Caching; namespace ConsoleApplication2 { class Program { static void Main(string[] args) ...