项目作者: wk-j
项目描述 :
IL Syntax and Snippets
高级语言: Shell
项目地址: git://github.com/wk-j/vscode-cil-complete.git
IL Syntax and Snippets
Installation
ext install vscode-cil-complete
Snippets
- prog (New program)
- pubc (Public class)
- pric (Private class)
- pubm (Public method)
- prim (Private method)
Sample
prog<tab>
Result
.assembly extern mscorlib {}
.assembly 'App' {}
.class private auto ansi beforefieldinit Program extends [mscorlib]System.Object {
.method private hidebysig static void Main ( string[] args) cil managed {
.entrypoint
ret
}
.method public hidebysig specialname rtspecialname instance void .ctor () cil managed {
ldarg.0
call instance void [mscorlib]System.Object::.ctor()
ret
}
}