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 |
Tell me the best web-sites for Learning the ASP DOT NET.
Microsoft introduced c# as a de facto language of the .NET platform. What is mean by de facto and fot what purpose? Please answer me. Advance thanks.
who handles these error while writing the source code???.
What is .net framework in simple terms?
Is CLR is compiler or Interpreter
Can we have more than 1 partial classes in the same file?
Mention what is the difference between “ActionResult” and “ViewResult” ?
What is ViewStart Page in ASP.Net MVC?
what is use of entitydatasource control?
How many .NET languages can a single .NET DLL contain
What does a viewmodel do?
Why to use '{resource}.axd/{*pathInfo}' in routing in ASP.Net MVC?