What is Common Language Runtime in ASP.NET? or What is CLR in ASP.NET
October 24, 2007
Common Language Runtime (CTS)
Common language runtime (CLR) is runtime for all .Net languages.It’s responsilbe for executing & managing all code written in any language that targets the .Net plateform.It’s provides many core services for application, such as:
1.Garbage Collection (GC):Garbage collection is a CLR feature that automatically manages memory on behalf of an applicaton.You create objects and use it, but you don’t explicity release them.The CLR automatically release objects when they are no longer reference & in use.This eliminates memory leaks in application.
2.Code Verification:Code verification is a process that ensure all code is safe to run prior to execution.Code verification enforces type safty and therefore prevents code from performing illegal operation such as accessing invalid memory location
3.Code Access security:Code access security allows code to be granted or denied permissions to do things, depending on the security configuration gor a given machine.
Entry Filed under: Art, Blogging, Books, Family, Food, Friends, Health, History, Humor, Life, Love, Media, Music, News, Personal, Photography, Poetry, Politics, Random, Religion, Technology, Thoughts, Travel, Video, Writing. .
Trackback this post | Subscribe to the comments via RSS Feed