What is the managed and unmanaged code in .net?
Answers were Sorted based on User's Feedback
Answer / guest
manged code is the code which excutes under clr environment.
clr will take care of excution and garabage collection etc.
| Is This Answer Correct ? | 4 Yes | 0 No |
Answer / pavan
managed code is something which is written in .net language
which can be compiled by clr
unmanaged code is something written in non .net languages
which the clr cannot understand
so we use wrappers which are managed code to run them
in .Net environment
| Is This Answer Correct ? | 2 Yes | 3 No |
Write a program to create a user control with name and surname as data members and login as method and also the code to call it.
Can a try block have nested try blocks?
What is the purpose of delegates in .net?
What is common type system (cts)?
What is smart navigation in .net?
What is CCW (COM Callable Wrapper) ?
Explain Different kinds of methods?
What is managed code in .NET?
Is .net a compiler?
Explain what is mutex?
Explain the use of ‘this’ keyword in Java?
Hi, Requirement is: try { \\SQL Query } catch(Exception i) { print a } catch(SQLQueryException e) { \\SQL Query } Got Exception in "try" block. Which "catch" throws exception and Why??? Please provide the answer in detail.. Thanks for the help!!!