diff options
Diffstat (limited to '')
-rw-r--r-- | emacs.d/snippets/text-mode/cc-mode/csharp-mode/prop | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/emacs.d/snippets/text-mode/cc-mode/csharp-mode/prop b/emacs.d/snippets/text-mode/cc-mode/csharp-mode/prop new file mode 100644 index 0000000..df9df91 --- /dev/null +++ b/emacs.d/snippets/text-mode/cc-mode/csharp-mode/prop @@ -0,0 +1,16 @@ +#contributor : Alejandro Espinoza Esparza <aespinoza@structum.com.mx> +#name : property ... ... { ... } +# -- +/// <summary> +/// $5 +/// </summary> +/// <value>$6</value> +$1 $2 $3 +{ + get { + return this.$4; + } + set { + this.$4 = value; + } +} |