I've re-enabled yasnippet for ease of use, and added a ton of snippets directly into my Dotfiles so only I get to curate what snippets are removed. Screw downloading them off someone else's repository at their total mercy.
19 lines
308 B
Plaintext
19 lines
308 B
Plaintext
# -*- mode: snippet -*-
|
|
# contributor: Alejandro Espinoza Esparza <aespinoza@structum.com.mx>
|
|
# name: property ... ... { ... }
|
|
# key: prop
|
|
# uuid: prop
|
|
# --
|
|
/// <summary>
|
|
/// $5
|
|
/// </summary>
|
|
/// <value>$6</value>
|
|
$1 $2 $3
|
|
{
|
|
get {
|
|
return this.$4;
|
|
}
|
|
set {
|
|
this.$4 = value;
|
|
}
|
|
} |