summaryrefslogblamecommitdiffstats
path: root/emacs.d/lisp/yasnippet/snippets/csharp-mode/prop
blob: df9df91843a36f42d5bdaffcd65a93fe870ce1fc (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16















                                                                     
#contributor : Alejandro Espinoza Esparza <aespinoza@structum.com.mx>
#name : property ... ... { ... }
# --
/// <summary>
/// $5
/// </summary>
/// <value>$6</value>
$1 $2 $3
{
    get {
        return this.$4;
    }
    set {
        this.$4 = value;
    }
}