An open API service indexing awesome lists of open source software.

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

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
}
}
```