From a07a60020c7dc4ed6f384543723323e1506aa551 Mon Sep 17 00:00:00 2001 From: externalxdpro Date: Wed, 7 Sep 2022 19:37:30 -0400 Subject: [PATCH] Add foreach snippet --- csharp-mode/foreach | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 csharp-mode/foreach diff --git a/csharp-mode/foreach b/csharp-mode/foreach new file mode 100644 index 00000000..8649e8d6 --- /dev/null +++ b/csharp-mode/foreach @@ -0,0 +1,9 @@ +# -*- mode: snippet -*- +# name: foreach +# key: foreach +# uuid: foreach +# -- +foreach (${1:var} ${2:item} in ${3:collection}) +{ + $0 +} \ No newline at end of file