What is the managed and unmanaged code in .net?
Answer Posted / guest
The .NET Framework provides a run-time environment called
the Common Language Runtime, which manages the execution of
code and provides services that make the development process
easier. Compilers and tools expose the runtime?s
functionality and enable you to write code that benefits
from this managed execution environment. Code that you
develop witha language compiler that targets the runtime is
calledmanaged code; itbenefits from features such as
cross-language integration, cross-language exception
handling, enhanced security, versioning and deployment
support, a simplified model for component interaction, and
debugging and profiling services
| Is This Answer Correct ? | 42 Yes | 12 No |
Post New Answer View All Answers
What are an object and a class?
Explain what rare the types of jit and what is econo-jit?
Explain Different kinds of methods?
Is .net a compiler?
Describe the Managed Execution Process
object is physical and class is logical..here class is not occupying any memory as our definition of class but i got a question then the class where it stores if it is not occupying any memory....
Explain what is an anonymous method and how is it different from a lambda expression?
What is .net code security?
Do you know the difference between the stack and the heap?
What is lambda expressions in c#?
what is the keyword used for self reference?
Explain the top .net class that everything is derived from?
What is Code group in .Net with respect to CAS
Explain how to produce an assembly?
Show different types of collection in .NET?