what is the difference between an ordinary exe file and the exe file generated from .net windows applications.
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
|
EXE generated by .NET has a normal PE header but then has instructions to load MSCorEE.DLL. See my answer here. Basically according to CLR via C# .NET EXE's Managed Module contains (in this order):
|
|||||||||||||
|
|
None, they are both executable files. EDIT: OK, I can see that wasn't very helpful. In one respect they are the same since they both trigger the same action from the operating system to start with, but as has been explained, there is deeper magic going on and that's more likely to be what the OP wanted to know. |
||||
|
|