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 are html helpers in asp.net mvc?
What are the difference between asynchronous controller implementation between asp.net mvc 3 & asp.net mvc 4?
What you mean by routing in mvc?
will there be any issues adding a table without primary keys to a data model?
What is .net framwork?
What platforms does the .NET Framework run on?
Which version of the common language runtime (clr) does the .net framework 3.0 use?
what is view state
Possible ways to prevent xss attacks on mvc application?
What is connected scenario? : Entity framework
What is attribute routing in mvc?
What is the use of view model in asp.net mvc?