summaryrefslogtreecommitdiff
path: root/.emacs.d/mysnippets/text-mode/cc-mode/csharp-mode/method
diff options
context:
space:
mode:
Diffstat (limited to '.emacs.d/mysnippets/text-mode/cc-mode/csharp-mode/method')
-rw-r--r--.emacs.d/mysnippets/text-mode/cc-mode/csharp-mode/method10
1 files changed, 0 insertions, 10 deletions
diff --git a/.emacs.d/mysnippets/text-mode/cc-mode/csharp-mode/method b/.emacs.d/mysnippets/text-mode/cc-mode/csharp-mode/method
deleted file mode 100644
index e9a5906..0000000
--- a/.emacs.d/mysnippets/text-mode/cc-mode/csharp-mode/method
+++ /dev/null
@@ -1,10 +0,0 @@
1#contributor : Alejandro Espinoza Esparza <aespinoza@structum.com.mx>
2#name : public void Method { ... }
3# --
4/// <summary>
5/// ${5:Description}
6/// </summary>${2:$(if (string= (upcase text) "VOID") "" (format "%s%s%s" "\n/// <returns><c>" text "</c></returns>"))}
7${1:public} ${2:void} ${3:MethodName}($4)
8{
9$0
10}