| Thread | Last Post | Replies |
|
| Can CLR 1.1 and CLR 2.0 run in the same app? | 07 Mar 2006 08:44 GMT | 1 |
Is it possible to run two versions of the CLR in the same application? The framework of our application was developed in 2003 under CLR 1.1 and some of our plugins were developed in VS 2005 and need the 2.0. The 2003 components experience problems when running with the 2.0 CLR ...
|
| Using Reflection to Get Inherited types | 06 Mar 2006 19:54 GMT | 1 |
I am tyring to get inhertied members of a type using relfection, but i am not able to do it. What bindingflags do I need to use to get inhertied members. Any pointers will help
|
| Why does compiler emit NOP instructions? | 05 Mar 2006 07:38 GMT | 2 |
Not too long I had to use Reflection.Emit to dynamically generate some classes that were only to be dynamically generated based on runtime conditions. Before emitting the op codes, I created a class and compiled it, then
|
| polymorphism | 03 Mar 2006 11:31 GMT | 1 |
is there any way to make Animal.Foo() being called ?? //============================== namespace ConsoleApplication1 {
|
| Event handlers and memory usage | 02 Mar 2006 22:52 GMT | 2 |
Hi all, I'm inquiring about the mechanism that is used to implement event handlers in .NET (not really relevant, but I'm using C#). Anyway, I've noticed that I can pass an object in an event argument and if the receiver (event handler) of that event changes any of the
|
| Compilation of managed code (IL) into native code | 01 Mar 2006 19:20 GMT | 4 |
I had a question about some of the basic concepts and needed help. When one runs a managed app then the CLR compiles the managed IL code into native code. Is this done for the full application or just for the function called?
|
| CLR details- Are MSCorEE.dll and MSCorWks.dll\MSCorSvr.dll COM ser | 01 Mar 2006 13:47 GMT | 6 |
I had read that the CLR is actually implemented as a COM server in the files MSCorWks.dll (or MSCorSvr.dll). But when I get a list of exported functions by this dll then it doesn't have the COM functions DllGetClassObject, DllRegisterServer, DllUnRegisterServer and ...
|