https://github.com/wk-j/vscode-cil-complete
IL Syntax and Snippets
https://github.com/wk-j/vscode-cil-complete
cil il msil snippets syntax vscode vscode-extension
Last synced: 4 months ago
JSON representation
IL Syntax and Snippets
- Host: GitHub
- URL: https://github.com/wk-j/vscode-cil-complete
- Owner: wk-j
- Created: 2017-02-03T15:16:05.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2020-05-17T12:00:20.000Z (almost 5 years ago)
- Last Synced: 2024-10-24T06:30:40.125Z (6 months ago)
- Topics: cil, il, msil, snippets, syntax, vscode, vscode-extension
- Language: Shell
- Homepage: https://marketplace.visualstudio.com/items?itemName=wk-j.vscode-cil-complete
- Size: 7.81 KB
- Stars: 5
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## 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
```javascript
prog
```## Result
```csharp
.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
}
}
```