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.

22 lines
385 B

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