view elpa/yasnippet-0.11.0/snippets/csharp-mode/attrib.1 @ 156:c745e2cc79ee

elpy: update along with direct deps
author Jordi Gutiérrez Hermoso <jordigh@octave.org>
date Mon, 27 Feb 2017 12:17:38 -0500
parents elpa/yasnippet-0.9.1/snippets/csharp-mode/attrib.1@ee4b6191b61e
children
line wrap: on
line source

# contributor: Alejandro Espinoza Esparza <aespinoza@structum.com.mx>
# name: private attribute ....; public property ... ... { ... }
# key: attrib
# --
/// <summary>
/// $3
/// </summary>
private $1 $2;

/// <summary>
/// $4
/// </summary>
/// <value>$5</value>
public $1 $2
{
    get {
        return this.$2;
    }
    set {
        this.$2 = value;
    }
}