.emacs.d/snippets/csharp-mode/foreach

8 lines
106 B
C#

# -*- mode: csharp -*-
# name: foreach
# key: f
# --
foreach (var ${1:Name} in ${2:Collection})
{
$0
}