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

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