aboutsummaryrefslogtreecommitdiff
path: root/doom.d/snippets/snippet-mode/prop/*prop*
diff options
context:
space:
mode:
Diffstat (limited to 'doom.d/snippets/snippet-mode/prop/*prop*')
-rw-r--r--doom.d/snippets/snippet-mode/prop/*prop*33
1 files changed, 33 insertions, 0 deletions
diff --git a/doom.d/snippets/snippet-mode/prop/*prop* b/doom.d/snippets/snippet-mode/prop/*prop*
new file mode 100644
index 0000000..9b7af0f
--- /dev/null
+++ b/doom.d/snippets/snippet-mode/prop/*prop*
@@ -0,0 +1,33 @@
+#contributor : Alejandro Espinoza Esparza <aespinoza@structum.com.mx>
+#name : property ... ... { ... }
+# key: cpro#contributor : Alejandro Espinoza Esparza <aespinoza@structum.com.mx>
+#name : property ... ... { ... }
+# key: cprop
+# --
+/// <summary>
+/// $5
+/// </summary>
+/// <value>$6</value>
+$1 $2 $3
+{
+ get {
+ return this.$4;
+ }
+ set {
+ this.$4 = value;
+ }
+}p
+# --
+/// <summary>
+/// $5
+/// </summary>
+/// <value>$6</value>
+$1 $2 $3
+{
+ get {
+ return this.$4;
+ }
+ set {
+ this.$4 = value;
+ }
+} \ No newline at end of file