blob: 742ff775268dfacbdf4611b69490b056d2fc6edf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
# -*- mode: snippet -*-
# contributor: Alejandro Espinoza Esparza <aespinoza@structum.com.mx>
# name: public void Method { ... }
# key: method
# uuid: method
# --
/// <summary>
/// ${5:Description}
/// </summary>${2:$(if (string= (upcase yas-text) "VOID") "" (format "%s%s%s" "\n/// <returns><c>" yas-text "</c></returns>"))}
${1:public} ${2:void} ${3:MethodName}($4)
{
$0
}
|