What is the difference between Managed and Unmanaged Code in .NET?
-
can u please explain me What is the difference between Managed and Unmanaged Code in .NET with example...?
"Managed Code" is what Visual Basic .NET and C# compilers create.CLR able to understand it. It compiles to Intermediate Language (IL), not to machine code that could run directly on your computer. Where as "Unmanaged code" is what you use to make before Visual Studio .NET 2002 was released. Visual Basic 6, Visual C++ 6, even that 15-year old C compiler you may still have kicking around on your hard drive all produced unmanaged code. It compiled directly to machine code that ran on the machine where you compiled it.
-
can u please explain me What is the difference between Managed and Unmanaged Code in .NET with example...?
Hi, Managed code : the code which run under the control of CLR is managed code. UnManaged Code : Which dosenot run under the control of CLR. Hope this help. Thanks Rahul
People Laugh on me Because i am Different but i Laugh on them Because they all are same.
-
can u please explain me What is the difference between Managed and Unmanaged Code in .NET with example...?
Also justhave a look
Cheers!! Brij