I'd like to automagically execute some code before certain class constructor gets executed (to load some externall assmebly that class requires), all in C#, .NET 2.0
EDIT:
public class MyClass
{
ThisTypeFromExternalAssembly variable;
}
And what I really need is to have assembly loader that is 'attached' somehow to MyClass, to load externall assembly when it is needed. This must happen before constructor, but I would not like to need to call some Init()
before constructing MyClass()
object