由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
DotNet版 - Managed Code vs. Unmanaged Code
相关主题
Need Help: a very wierd Managed C++ interop problemHow to delete windows service in service management tool?
.net framework class library的source open嘛?[合集] Need Help: a very wierd Managed C++ interop problem
how to debug managed dll when called from unmanaged code关于isapi
windows Form能用managed方式对icon编程吗?SilverLight 4 is coming
c++ managed code 几个问题有人用过.net的content managment system吗
[转载] managed quake II.net面试求帮助
问:managed c++.NET 入门系列(1)--什么是.NET
讨厌的WARNING: 在 MANAGED C++ 中写东东 (转载).NET前景的障碍
相关话题的讨论汇总
话题: code话题: managed话题: clr话题: net话题: unmanaged
进入DotNet版参与讨论
1 (共1页)
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

1 (共1页)
进入DotNet版参与讨论
相关主题
.NET前景的障碍c++ managed code 几个问题
IE8下navigator.appVersion的值是什么? (转载)[转载] managed quake II.net
怎样用FCL做一个彩色的Cursor?问:managed c++
About mono讨厌的WARNING: 在 MANAGED C++ 中写东东 (转载)
Need Help: a very wierd Managed C++ interop problemHow to delete windows service in service management tool?
.net framework class library的source open嘛?[合集] Need Help: a very wierd Managed C++ interop problem
how to debug managed dll when called from unmanaged code关于isapi
windows Form能用managed方式对icon编程吗?SilverLight 4 is coming
相关话题的讨论汇总
话题: code话题: managed话题: clr话题: net话题: unmanaged