我可以在Visual Studio中創建鍵盤快捷方式來區域化方法並使用GhostDoc自動記錄它嗎?創建區域化方法的鍵盤快捷鍵
從這:
protected override void OnInit(EventArgs e)
{
base.OnInit(e);
}
我想做出這樣的:
#region protected override void OnInit(EventArgs e)
/// <summary>
/// Raises the <see cref="E:Init"/> event.
/// </summary>
/// <param name="e">The <see cref="System.EventArgs"/> instance containing the event data.</param>
protected override void OnInit(EventArgs e)
{
base.OnInit(e);
}
#endregion
我想知道同樣的事情......特別是第一部分,區分選定的代碼 – Sakkle 2009-09-16 11:08:13