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

8 lines
106 B
Plaintext
Raw Normal View History

2024-01-20 09:04:12 +00:00
# -*- mode: csharp -*-
# name: foreach
# key: f
# --
foreach (var ${1:Name} in ${2:Collection})
{
$0
}