The .NET Framework provides a run-time environment called the Common Language Runtime, which manages the execution of code and provides services that make the development process easier. Compilers and tools expose the runtime's functionality and enable you to write code that benefits from this managed execution environment. Code that you develop with a language compiler that targets the runtime is called managed code; it benefits from features such as cross-language integration, cross-language exception handling, enhanced security, versioning and deployment support, a simplified model for component interaction, and debugging and profiling services
sekhar reddy
Sep 24th, 2006
A code which is written according to .net Framework is calledd managed code. managed code manages by CLR.
Managed Code that is executed under the control of CLR which uses .net BCL in it.FileStream Class is present in System.IO namespace so that it also falls under Managed Code.
Jagtar
Nov 2nd, 2006
Managed code it that which must be care by any intermediate manager. for eg. in dot net it is a interpreater based language. Allocation of memory is done by CLR. Garbage collection also plays a valuable role to manage the memory. and other featuers like security etc are also taking care by CLR.
What is a managed code.Is 'Dim fs as filestreamobject' is a managed code?