Emacs config utilizing prelude as a base
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.

21 lines
360 B

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