Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
marvel
GitHub Repository: marvel/qnf
Path: blob/master/elisp/emacs-for-python/yasnippet/snippets/csharp-mode/prop
990 views
#contributor : Alejandro Espinoza Esparza <[email protected]>
#name : property ... ... { ... }
# --
/// <summary>
/// $5
/// </summary>
/// <value>$6</value>
$1 $2 $3
{
    get {
        return this.$4;
    }
    set {
        this.$4 = value;
    }
}