3
votes
5answers
262 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 …
1
vote
3answers
355 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 = …
3
votes
3answers
103 views
Assigning to static readonly field of base class
public class ClassA
{
public static readonly string processName;
}
pubic class ClassB : ClassA
{
static ClassB()
{
processName = "MyProcess.exe";
}
}
I am getting an error …
0
votes
3answers
218 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.
…
3
votes
3answers
466 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 …
