summaryrefslogtreecommitdiffstats
path: root/emacs.d/lisp/yasnippet/snippets/csharp-mode/class
blob: 1cce2e8805f0026c61e6b17543d3c418fa5c92d6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#contributor : Alejandro Espinoza Esparza <aespinoza@structum.com.mx>
#name : class ... { ... }
# --
${5:public} class ${1:Name}
{
    #region Ctor & Destructor
    /// <summary>
    /// ${3:Standard Constructor}
    /// </summary>
    public $1($2)
    {
    }

    /// <summary>
    /// ${4:Default Destructor}
    /// </summary>    
    public ~$1()
    {
    }
    #endregion
}