Klimi's new dotfiles with stow.
25'ten fazla konu seçemezsiniz
Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
|
# -*- mode: snippet -*-
|
|
# 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
|
|
}
|