开发者

Managed code advantages [duplicate]

开发者 https://www.devze.com 2023-02-17 08:17 出处:网络
This question already has answers here: Closed 11 years ago. Possible Duplicate: Managed and unmanaged code in .NET
This question already has answers here: Closed 11 years ago.

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
0

精彩评论

暂无评论...
验证码 换一张
取 消