10-21-2012, 11:54 AM
With this you only create a wrapper for the Managed Apps, but if you want to inject the dll to the app, you only create functions that wrap your managed dll classes.
There are 2 methods to wrap this:
1)Interoperability
2
2)or using CLR(Managed C++)
2
2
I think its much simpler to write it all in C/C++ then make it work with c#(you still need to make a dll wrapper for C++)
Or you can do it natively from ASM loading MSCorEE.dll.
But still managed code is slow.

