01-02 Introducing the Building Blocks of the .NET Platform (the CLR, CTS, and CLS)

news/2024/7/20 12:55:43 标签: runtime, 内存管理

The primary role of the CLR is to locate, load, and manage .NET objects on your behalf. 

CLR主要的角色就是为你定位,加载和管理.Net对象。

The CLR also takes care of a number of low-level details such as memory management, application hosting, coordinating threads, and performing security checks (among other low-level details).
CLR关注一些低级的细节,包括内存管理,应用程序托管,进程同步和执行安全检查。

The CTS specification fully describes all possible data types and all programming constructs supported by the runtime, specifies how these entities can interact with each other, and details how they are represented in the .NET metadata format (more information on metadata later in this chapter; see Chapter 15 for complete details).
CTS说明描述了可能的数据类型和运行时支持的编程结构,说明了这些实体如何互相交互,说明了.Net元数据格式细节。

转载于:https://www.cnblogs.com/cout/p/4292952.html


http://www.niftyadmin.cn/n/1159017.html

相关文章

Python获取并输出当前日期时间

转载网址:http://www.cnblogs.com/kerwinC/p/5760811.html

PAT 1029 旧键盘(20)

题目 /*1029. 旧键盘(20)旧键盘上坏了几个键,于是在敲一段文字的时候,对应的字符就不会出现。现在给出应该输入的一段文字、以及实际被输入的文字,请你列出肯定坏掉的那些键。输入格式:输入在2行中分别给出应该输入的文字、以及实…

Python中的urlencode

转载网址:http://www.cnblogs.com/caicaihong/p/5687522.html

HTML标签marquee实现滚动效果

页面的自动滚动效果&#xff0c;可由javascript来实现&#xff0c;但是今天无意中发现了一个html标签 - <marquee></marquee>可以实现多种滚动效果&#xff0c;无需js控制。 使用marquee标记不仅可以移动文字&#xff0c;也可以移动图片&#xff0c;表格等. 语法&a…

Django 时间与时区设置问题

转载网址&#xff1a;http://www.cnblogs.com/brad1994/p/6761110.html

python 将数据写入excel

参考博客&#xff1a; https://www.cnblogs.com/liuyang92/p/7492336.html https://www.cnblogs.com/lhj588/archive/2012/01/06/2314181.html https://www.cnblogs.com/liuyang92/p/7492336.html https://www.cnblogs.com/jiangzhaowei/p/5857904.html 我自己写的一段代码…

Django通过HttpResponse如何返回用户头像

代码示例&#xff1a; def test(request):# 获取当前文件的路径、父路径以及下一层的路径curr_dir os.path.dirname(__file__)parent_path os.path.dirname(curr_dir)image_path os.path.join(parent_path,"static/image/timg.jpg")"""D:\Python …