Difference between native and managed code? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T16:29:05Z http://stackoverflow.com/feeds/question/855756 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/855756/difference-between-native-and-managed-code 1 Difference between native and managed code? Joel 2009-05-13T02:14:12Z 2009-05-13T22:27:28Z <p>For example, when looking at the GlowCode profiler website it says:</p> <p>"GlowCode 6.2 and x64 profile native, managed, and mixed C++, C#, .NET code"</p> <p>What do they mean?</p> http://stackoverflow.com/questions/855756/difference-between-native-and-managed-code/855774#855774 7 Answer by AZ for Difference between native and managed code? AZ 2009-05-13T02:23:01Z 2009-05-13T02:23:01Z <p>Native code is the code whose memory is not "managed", as in, memory isn't freed for you (C++' delete and C's free, for instance), no reference counting, no garbage collection. Managed code, you guessed it, is the code whose memory is free and allocated for you, garbage collection and other goodies.</p> <p>Mixed code is when you have managed code that calls onto an unmanaged layer. Normally, when you have a pure unmanaged C++ DLL and you call it from .NET using P/invoke.</p> http://stackoverflow.com/questions/855756/difference-between-native-and-managed-code/855794#855794 3 Answer by Wayne Hartman for Difference between native and managed code? Wayne Hartman 2009-05-13T02:33:41Z 2009-05-13T02:33:41Z <p>Native code is compiled to work directly with the OS. Managed code however, is precompiled (bytecode in Java-speak) but is then processed by the Just In Time Compiler to native code at runtime. Managed code has the interesting side effect of having the potential of running on different operating systems, because the machine code is not created until the VM actually uses it. This way, you are able to run .NET apps on Windows and also run them on Linux or Mac that have the Mono runtime installed. The portability is not as clean currently as Java is (because of Microsoft's naturally closed architecture), but the concept remains.</p> <p>If you are running an unmanaged app, the code has been compiled to run for the designated OS/Hardware. Any portability to another OS/instruction set is lost and must be recompiled to execute.</p> http://stackoverflow.com/questions/855756/difference-between-native-and-managed-code/860747#860747 1 Answer by onedozenbagels for Difference between native and managed code? onedozenbagels 2009-05-13T22:27:28Z 2009-05-13T22:27:28Z <p>Native code is written in the "native" machine language of the computer that it is running on and is executed directly by the processor. </p> <p>Managed code is written in a special language that requires another program to run (i.e. manage) it. This other program is often called an interpreter as it interprets the special language.</p> <p>C and C++ programs are native.</p> <p>Java and C# (and all .NET languages for that matter) are managed.</p> <p>Managed C++ is a special form of C++ that runs in the .NET interpreter.</p> <p>A mixed program is a program that uses code that is both native and managed.</p>