summaryrefslogtreecommitdiff
path: root/csharp-mode/attrib.1
diff options
context:
space:
mode:
authorAlberto Luaces Fernández <aluaces@udc.es>2015-05-13 19:45:06 +0100
committerAlberto Luaces Fernández <aluaces@udc.es>2015-05-13 19:45:06 +0100
commitf4123b269fe5af6d04d68a643d16fea9fa388e2d (patch)
tree4361a69e833eaa18c49cad6bf594c9cddfcc6f89 /csharp-mode/attrib.1
Import yasnippet-snippets_0~git20150512.orig.tar.gz
[dgit import orig yasnippet-snippets_0~git20150512.orig.tar.gz]
Diffstat (limited to 'csharp-mode/attrib.1')
-rw-r--r--csharp-mode/attrib.122
1 files changed, 22 insertions, 0 deletions
diff --git a/csharp-mode/attrib.1 b/csharp-mode/attrib.1
new file mode 100644
index 0000000..ba06d76
--- /dev/null
+++ b/csharp-mode/attrib.1
@@ -0,0 +1,22 @@
+#contributor : Alejandro Espinoza Esparza <aespinoza@structum.com.mx>
+#name : private attribute ....; public property ... ... { ... }
+# key: attrib
+# --
+/// <summary>
+/// $3
+/// </summary>
+private $1 $2;
+
+/// <summary>
+/// $4
+/// </summary>
+/// <value>$5</value>
+public $1 $2
+{
+ get {
+ return this.$2;
+ }
+ set {
+ this.$2 = value;
+ }
+} \ No newline at end of file