This is a discussion on How to Convert the MSIL to native code? within the C and C++ Programming forums, part of the Software Development category; You have to do following for convert the msil to native code : First disassemble your code using ILDASM.exe DLL : ...
| |||||||
| Register | FAQ | Members List | Calendar | Mark Forums Read |
| |||
| You have to do following for convert the msil to native code : First disassemble your code using ILDASM.exe DLL : ildasm YourCode.dll /output:YourCode.il EXE: ildasm YourCode.exe /output:YourCode.il This creates an il file and a res file Then you have to assemble this il and res file with ILASM.exe DLL: ilasm YourCode.il /dll /resource:YourCode.res /output:YourCode.dll EXE :ilasm YourCode.il /exe /resource:YourCode.res /output:YourCode.exe After those two steps you have an PE in native code |
| Sponsored Links |
| |||
| hi Archer i'm frankly say to you, i don't know about MSIL and native code? can you please explain about this and where we used these codes?
__________________ Thanks & Regards Sabari... |
![]() |
| Thread Tools | |
| Display Modes | |
| |
Similar Threads | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| SQL Server Native Client | Sathish Kumar | Database Support | 1 | 08-22-2007 01:43 AM |
| MSIL Secrets : Every .net Programmer should know. | a.deeban | C# Programming | 4 | 08-16-2007 12:42 AM |
| How do I call the native API from Java? | oxygen | Java Programming | 2 | 08-06-2007 08:43 AM |
| Is there any chance to convert the C code to VC++ to create DLL | kingmaker | C and C++ Programming | 1 | 07-20-2007 04:26 AM |
| What are native methods? How do you use them? | vadivelanvaidyanathan | Java Programming | 1 | 07-17-2007 06:10 AM |