Compiling MSIL and c#
C#
5
Posts
4
Posters
0
Views
1
Watching
-
Hi Is there a way to add MSIL to c# code? Thanks
-
Hi Is there a way to add MSIL to c# code? Thanks
AFAIK, no. Yes, even I am blogging now!
-
AFAIK, no. Yes, even I am blogging now!
-
ILASM will work, but you won't be able to embed it inside C# code. You can build a DLL and call it from C#, tough, but I guess this is not what the original post wanted to do... Yes, even I am blogging now!
-
Hi Is there a way to add MSIL to c# code? Thanks
Check out RAIL (Runtime Assembly Instrumentation Library)[^]. There is also another way, through using a post-build event however it is more of a hack. - Nick Parker
My Blog | My Articles