E*******s 发帖数: 42 | 1 .NET code that uses FCL is called Managed Code.
because it is managed by CLR
As you know that the CLR manage the execution of .NET programs and managing
the code is one way of managing .NET applications. When we write Managed Code
we don’t care about Memory management, Handling operating system low-level
functions because CLR abstract these details from us and manage it.
Unmanaged Code
it is the code that not managed by the CLR
it’s your responsibility to manage the memory and many other thing | L*******r 发帖数: 1011 | 2 Although most people will use managed code, knowing how to write unmanaged
code
is very very important. A lot of legacy systems are written using different
languages. Rewritting them is definetely a super bad idea. Reusing them by
writting unmaged code is the right way.
Considering .Net is new, this kind of migrating requirement will be great
recently.
Code
powerful
【在 E*******s 的大作中提到】 : .NET code that uses FCL is called Managed Code. : because it is managed by CLR : As you know that the CLR manage the execution of .NET programs and managing : the code is one way of managing .NET applications. When we write Managed Code : we don’t care about Memory management, Handling operating system low-level : functions because CLR abstract these details from us and manage it. : Unmanaged Code : it is the code that not managed by the CLR : it’s your responsibility to manage the memory and many other thing
|
|