1.

Managed and Unmanaged code in C#

Answer»

Managed Code is managed by the CLR. The managed code compiles into MACHINE code. Applications under the CONTROL of CLR is managed code.

The code outside the .NET Framework is CALLED UNMANAGED code. Wrapper classes are used to execute the unmanaged code. Applications not under the control of CLR is managed code.

The unmanaged code is the unsafe code that use a pointer variable.



Discussion

No Comment Found