本文介绍了用于实现CLR语言的书籍和文学的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在寻找有关CLR(和/或DLR)内部工作的书籍和文献,我的长期目标是在CLR上实现一种简单的语言。

I'm looking for books and literature on the inner workings of the CLR (and/or possibly the DLR), my long time goal is to implement a simple language on the CLR.

推荐答案

CLR的一些启动程序:

A few starters for the CLR:


  • (很快将对v4进行更新)(Jeff Richter) )


  • (Don Box等人)-不涉及.NET 2.0,而是一个很好的起点

  • CLR via C# (soon to have an update for v4) (Jeff Richter)
  • ECMA 335
  • Essential .NET volume 1 (Don Box et al) - doesn't cover .NET 2.0, but a good starting point

DLR本身是及其非常方便。

The DLR itself is Open Source, and its documentation is pretty handy.

这篇关于用于实现CLR语言的书籍和文学的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-19 22:54