Possible Duplicate:
Managed and unmanaged code in .NET
Hi, If I am right, then code in my app that runs under CLR (all code written the standard way) is managed code. But except for GC, wh开发者_Python百科at other advantages there are? I would like to know the real examples (like GC), not theoretical differences.
- Memory management
- Thread management
- Exception handling
- Garbage collection
- Security
http://en.wikipedia.org/wiki/Common_Language_Runtime
for example
- no messing with pointers
- no memory management (with some exceptions)
- huge base class library
- able to combine multiple .NET languages
精彩评论