Files
dotfiles/Doom/.config/doom/snippets/csharp-mode/foreach
2020-07-15 15:57:09 +01:00

10 lines
159 B
Plaintext

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