What is difference between managed and unmanaged code?



What is difference between managed and unmanaged code?..

Answer / Amar Kumar Mandal

Managed Code: In .NET, all code runs inside the Common Language Runtime (CLR). This includes all C# code, as well as code written in other .NET languages such as Visual Basic.NET and F#.nUnmanaged Code: This is code that does not run inside the CLR, such as code written directly in machine language or assembly language.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More C Sharp Interview Questions

Can an interface inherit an interface

1 Answers   Synechron,


what is unit testing

2 Answers  


Why multiple Inheritence is not used in C#?

8 Answers   Symphony,


How to use delegates with events?

1 Answers  


What is static and use of it?

1 Answers  


What is inner class in c#?

1 Answers  


What does assert() do?

1 Answers   Rolta,


How do I declare a pure virtual function in c#?

1 Answers  


What is the meaning of console writeline in c#?

1 Answers  


what is the purpose of new keyword while creating an object?

3 Answers  


What is strong data type in c#?

1 Answers  


Trace the O/p for a program on inheritance and Polymorphism. 3 classes A,B,C A with two methods public virtual SomeMethodA public virtual SomemoreMethodA B:A overide SomeMethodA C:B new Method SomeMethodA override SomeMoreMethodA main method { b new instance of B b.SomeMethodA b.SomeMoreMethodA b1 new instance of C b1.SomeMethodA b1.SomeMoreMethodA }

2 Answers   Proteans,


Categories