C# - CLR
2020-12-13 14:22
标签:clr c# The Common Language Runtime (CLR), the virtual-machine component of Microsoft‘s .NET framework, manages the execution of .NET programs. A process known as just-in-time compilation
converts compiled code into machine instructions which the computer‘s CPU then executes. The CLR provides additional services including memory management, type safety and exception handling. All programs written for the .NET framework, regardless of programming
language, are executed by the CLR. It provides exception handling, garbage collection, security and thread management. All versions of the .NET framework include CLR. CLR implements the Virtual Execution System (VES) as defined in the Common Language Infrastructure (CLI) standard, initially developed by Microsoft itself. A public standard defines the Common Language Infrastructure
specification. The runtime provides the following benefits: C# - CLR 标签:clr c# 原文地址:http://blog.csdn.net/troubleshooter/article/details/40620083
上一篇:基于DFA算法的敏感词过滤
下一篇:什么是算法?