Benefits of Managed Code

Possible duplicate:
Managed and unmanaged code in .NET

Hi, If I'm right, then the code in my application that runs under the CLR (all code written in a standard way) is managed code. But besides GC, what other benefits are there? I would like to know real examples (like GC), not theoretical differences.

+3
source share
2 answers
  • Memory management
  • Flow management
  • Exception Handling
  • Garbage collection
  • Safety

http://en.wikipedia.org/wiki/Common_Language_Runtime

+1
source

eg

  • don't mess with pointers
  • lack of memory management (with some exceptions)
  • huge base class library
  • .NET
+1

All Articles