Science, asked by pranjalagrawal2150, 1 year ago

What is managed code and managed data, please provide your answer on context of .net?

Answers

Answered by rajanki
0

Definition - What does Managed Code mean?

Managed code is a scheme applied by Microsoft to some high-level programming languages in order to have their execution managed by the .Net Framework Common Language Runtime.

The core of this is a contract of cooperation between the runtime and the natively executing code which states that the runtime may stop an executing CPU in order for it to retrieve the information which is specific to that current address the CPU is executing. This is to ensure type safety, array bound and index checking, garbage collection and exception handling.

Similar questions