109k views
2 votes
What is the different between native c++ programming vs managed programming ?
information ​

User Dingo
by
4.8k points

1 Answer

4 votes

Answer: my honest answer is

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

User Alexkovelsky
by
4.7k points