Klimi's new dotfiles with stow.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
296 B

4 years ago
  1. # -*- mode: snippet -*-
  2. # contributor : Alejandro Espinoza Esparza <aespinoza@structum.com.mx>
  3. # name: property ... ... { ... }
  4. # key: prop
  5. # --
  6. /// <summary>
  7. /// $5
  8. /// </summary>
  9. /// <value>$6</value>
  10. $1 $2 $3
  11. {
  12. get {
  13. return this.$4;
  14. }
  15. set {
  16. this.$4 = value;
  17. }
  18. }