.net framework (一个独立发布的软件包)包括
1. .net framework类库,包含许多封装好的方法
2.CLR(common language runtime) 公共语言运行时 就是GC JIT(just in time)这些
CTS(common type system)通用类型系统 ,定义了.net运行库所支持的所有类型和编程结构,就像英语中一个个的单词
如c#中的int32和VB中的integer在编译后统一指向System.INT32类型
CLS(common language specification)公共语言规范 定义了.net运行库语言的使用规范 相当于英语的语法
3.相关的语言编译器等工具