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.

16 lines
271 B

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