Wednesday, October 31, 2007

What is managed code and managed data?

The .Net Framework provides a run time environment called Common Language Runtime which manages the execution of code and provides services that make the development process easier.Code that you write with a language compiler that targets the runtime is called managed code.It benefits from features like cross language integration,cross language exceptional handling, security and deployment support etc.
Data whoes memory allocation and deallocation is managed by Garbage collector is called as managed data.

No comments: