Tagged Questions
The .net-internals tag has no wiki summary.
8
votes
3answers
470 views
Delegates in .NET: how are they constructed?
While inspecting delegates in C# and .NET in general, I noticed some interesting facts:
Creating a delegate in C# creates a class derived from MulticastDelegate with a constructor:
.method public ...
7
votes
3answers
154 views
Why calling some functions of the Object class, on a primitive type instance, need boxing?
I have discovered that if i run following lines of code.
int i = 7;
i.GetHashCode(); //where GetHashCode() is the derived
//function from System.Object
No boxing is done, but if i ...
0
votes
1answer
121 views
Force FSI, the .NET 4 version, to load assamblies that are compiled for .NET 2.0
I'm working primarily with .NET 4.0 using fsi, F# interactive, but I have a couple of dll that I need to access that are only compiled for the .NET 2.0 version of the framework (I checked the manifest ...
0
votes
1answer
302 views
How does the .NET runtime determine that two types are the same?
I have assembly A that depends (statically) on type T (reference type, a class) in assembly B.
I do not own assembly A but I do own assembly B. T unfortunately is a real type (not an interface) but ...