We all know that if you type \\\ on the line above a function or variable definition etc. what you get is:
Code:
///<summary>
///
///</summary>
public void myRidiculouslyLongFunctionNameForNoParticularReason()
{
   DoSomeStuff();
}
or maybe
Code:
/// <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?