Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Managed code advantages [duplicate]

Tags:

.net

clr

managed

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, what other advantages there are? I would like to know the real examples (like GC), not theoretical differences.

like image 241
Mocco Avatar asked Jul 25 '26 01:07

Mocco


2 Answers

  • Memory management
  • Thread management
  • Exception handling
  • Garbage collection
  • Security

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

like image 168
timothyclifford Avatar answered Jul 27 '26 20:07

timothyclifford


for example

  • no messing with pointers
  • no memory management (with some exceptions)
  • huge base class library
  • able to combine multiple .NET languages
like image 35
Robert Avatar answered Jul 27 '26 19:07

Robert



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!