Submitted Questions

  • How can we say one exe is developed in .net Compatible languages or not?

    GP

    • Mar 21st, 2007

    There are two easy methods1) No programming: Load the EXE/DLL with ILDASM.exe if it is .Net programed than it will work otherwise it will throw error. 2) Programatically: Use reflection API to LoadAssembly. It it is not a .Net program it will throw exception.

    shailesh

    • Jan 13th, 2007

    Every exe is in PE(Portable executable ) form which keeps the information about in which environment it is to be run so if try to run any exe  that is not .NET complaint it will not run.