summaryrefslogtreecommitdiff
path: root/csharp-mode/class
diff options
context:
space:
mode:
Diffstat (limited to 'csharp-mode/class')
-rw-r--r--csharp-mode/class22
1 files changed, 22 insertions, 0 deletions
diff --git a/csharp-mode/class b/csharp-mode/class
new file mode 100644
index 0000000..bea8a1e
--- /dev/null
+++ b/csharp-mode/class
@@ -0,0 +1,22 @@
+#contributor : Alejandro Espinoza Esparza <aespinoza@structum.com.mx>
+#name : class ... { ... }
+# key: class
+# --
+${5:public} class ${1:Name}
+{
+ #region Ctor & Destructor
+ /// <summary>
+ /// ${3:Standard Constructor}
+ /// </summary>
+ public $1($2)
+ {
+ }
+
+ /// <summary>
+ /// ${4:Default Destructor}
+ /// </summary>
+ public ~$1()
+ {
+ }
+ #endregion
+} \ No newline at end of file