gcctor.il
来自「< Microsoft .NET IL汇编语言程序设计>>书上」· IL 代码 · 共 21 行
IL
21 行
.assembly extern mscorlib { }
.assembly Gcctor { }
.module Gcctor.exe
.field private static string Hello
.method private static void .cctor( )
{
ldstr "Hi there! What's up?"
stsfld string Hello
ret
}
.method public static void Exec( )
{
.entrypoint
ldsfld string Hello // Global fields are accessible within the module
call void [mscorlib]System.Console::WriteLine(string)
ret
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?