XML Code Documentation

We all know that if you type \\\ on the line above a function or variable definition etc. what you get is:


///<summary>
///
///</summary>
public void myRidiculouslyLongFunctionNameForNoParticularReason()
{
   DoSomeStuff();
}

 


or maybe


/// <summary>
///
/// </summary>
/// <param name="iVal"></param>
/// <returns></returns>
public double myLittleMathFunction(int iVal)
{
     double rVal =  DoSomeMaths();
     return rVal;
}

 

And this is Great. 

Does anyone know if it is possible to change/modify/add to the XML Documentation comments that are generated

For example, I want the automatically generated XML comments to include


///<remarks>
///
///</remarks>

 


I realise I could type this in manually quite easily, but I am incredibly lazy and quite forgetfull, so I want VS2005 to do it for me!



Answer this question

XML Code Documentation