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
394 B

  1. # contributor: Alejandro Espinoza Esparza <aespinoza@structum.com.mx>
  2. # name: class ... { ... }
  3. # key: class
  4. # --
  5. ${5:public} class ${1:Name}
  6. {
  7. #region Ctor & Destructor
  8. /// <summary>
  9. /// ${3:Standard Constructor}
  10. /// </summary>
  11. public $1($2)
  12. {
  13. }
  14. /// <summary>
  15. /// ${4:Default Destructor}
  16. /// </summary>
  17. public ~$1()
  18. {
  19. }
  20. #endregion
  21. }