Install yasnippet and vala-snippets packages
This commit is contained in:
22
elpa/yasnippet-20160924.2001/snippets/csharp-mode/class
Normal file
22
elpa/yasnippet-20160924.2001/snippets/csharp-mode/class
Normal file
@@ -0,0 +1,22 @@
|
||||
#contributor : Alejandro Espinoza Esparza <aespinoza@structum.com.mx>
|
||||
#name : class ... { ... }
|
||||
# key: class
|
||||
# --
|
||||
${5:public} class ${1:Name}
|
||||
{
|
||||
#region Ctor & Destructor
|
||||
/// <summary>
|
||||
/// ${3:Standard Constructor}
|
||||
/// </summary>
|
||||
public $1($2)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// ${4:Default Destructor}
|
||||
/// </summary>
|
||||
public ~$1()
|
||||
{
|
||||
}
|
||||
#endregion
|
||||
}
|
Reference in New Issue
Block a user