Managed and unmanaged code in .NET.

What is the difference between managed code and unmanaged code from a .NET platform perspective?

+3
source share
3 answers

Managed code is the differentiation created by Microsoft to define code that requires and will only run under the "control" of the CLR virtual machine , resulting in Bytecode .

The benefits of using managed code include the convenience of a programmer (by increasing the level of abstraction, creating smaller models) and the increased security of the guarantee, depending on the platform (including the implementation of the virtual machine).

From: Wikipedia: managed code

+8

Google and Microsoft easily answered: http://blogs.msdn.com/brada/archive/2004/01/09/48925.aspx

0
source

Source: https://habr.com/ru/post/1738633/


All Articles