标签:
CLR | 公共语音运行时 | Common Language Runtime | ||
CTS | 通用类型系统 | Common Type System | CTS、CLS是CLR的核心 | |
CLS | 通用语言规范 | Common Language Specification | CLS是CTS的子集 | |
IL | 托管代码 | 栈 | ||
COM | 类型库 | Type Library | ||
IDL | 接口定义语音 | Interface Definition Language | ||
FCL | FrameWork类库 | Framework Class Library |
[assembly:CLSCompliant(true)]
namespace CLR的基础
{
class Program
{
static void Main(string[] args)
{
}
}
public sealed class SomeLibraryType
{
public UInt32 Abc()
{
return 0;
}
public void abc() { }
private UInt32 ABC()
{
return 0;
}
}
}
标签:
原文地址:http://www.cnblogs.com/tangge/p/5928234.html