what is managed data and managed code?
Answers were Sorted based on User's Feedback
Answer / upendra nath solige
Managed Code: Code runs with in CLR.
Unmanged code: Code runs out fo CLR(Eg: Code of API's, VB
dll references)
| Is This Answer Correct ? | 4 Yes | 0 No |
Answer / shreepad deshpande
Managed code runs under the machine H/W availability.
Suppose you build your code on a machine having 128MB RAM
and 800MHz Processor and you deploy that code on a machine
havinf same or higher configuration then it works fine. It
means DOT NET CLR builds code managed with build machine.
While un managed code is other part. It needs certain H/W
specification. No matter where you build it. If certain
application in Java requires 2 GB RAM to run then it will
not allow application to run on 1 GB ram Machine.
| Is This Answer Correct ? | 2 Yes | 5 No |
Garbage collector thread is what kind of a thread?
Is it true that objects don't always get destroyed immediately when the last reference goes away?
What are the collections you've used?
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....
How does linq work?
What is the managed and unmanaged code in .net?
3 Answers Deltech, Dhanush Infotech,
Difference between VB.NET and C#. Which is faster ?
What is static constructor, when it will be fired? And what is its use?
Differences between datagrid, datalist and repeater in .net?
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!!!
Difference between value type & reference types ?
What does il do?