Files
dotfiles/doom.d/snippets/csharp-mode/foreach
2019-11-25 14:23:50 +00:00

10 lines
159 B
Plaintext

# -*- mode: snippet -*-
# name: Foreach loop
# key: foreach
# condition: t
# --
foreach (${1:var} ${2:i} in ${3:collection})
{
$0
}