aboutsummaryrefslogtreecommitdiff
path: root/Doom/.config/doom/snippets/csharp-mode/method
blob: a2aaf6be9aebd8773c70252f268b036147806ce2 (plain)
1
2
3
4
5
6
7
8
# -*- mode: snippet -*-
# name: public void Method { ... }
# key: method
# --
${1:public} ${2:void} ${3:Method}(${4:int x})
{
    ${0:return x;}
}