Describe the advantages of writing a managed code application instead of unmanaged one. What's involved in certain piece of code being managed ?
Answer / kirti
"Advantage includes automatic garbage collection,memory management,security,type checking,versioning
Managed code is compiled for the .NET run-time environment. It runs in the Common Language Runtime (CLR), which is the heart of the .NET Framework. The CLR provides services such as security,
memory management, and cross-language integration. Managed applications written to take advantage of the features of the CLR perform more efficiently and safely, and take better advantage of developers existing expertise in languages that support the .NET Framework.
Unmanaged code includes all code written before the .NET Framework was introduced�this includes code written to use COM, native Win32, and Visual Basic 6. Because it does not run inside the .NET environment, unmanaged code cannot make use of any .NET managed facilities."
| Is This Answer Correct ? | 0 Yes | 0 No |
What is IL
What are the major improvements provided by the common language runtime and the base class libraries? Or what are the major improvements in .net framework 4.0?
Why do I get errors when I try to serialize a Hashtable
What is the difference between a Struct and a Class
How do you create shared assemblies ?
What is the difference between adding routes, to a webforms application and to an mvc application?
How to bind table colum with gridview column?
What is display mode in mvc?
Is it possible to share a view across multiple controllers?
How do you box a primitive data type variable ?
What are child actions in ASP.Net MVC?
What is meant by viewdata?