When I add a method in a class, say like the window loaded method below, Visual Studio will auto add the below comment when I start a triple slash comment
/// <summary>
///
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
private void Window_Loaded(object sender, RoutedEventArgs e)
{
}
Is it possible to edit the comment tempalte that visual studio
uses?