KnowDotNet NetRefactor

XML Comments Insertion

If you elect to have CSharpCompleterPlus insert XML Comments in the Setup dialog, then XML Comments will be inserted when either a class is created or a new function is created. For example, if the following line is entered and the Enter key is pressed, the resulting code will be generated. The typed line and the resultant code is shown below.


......original line of code....
public string TestFunction(string s, int i)


....Resultant code when enter is pressed....

/// <summary>
/// |
/// </summary>
/// <param name="s"></param>
/// <param name="i"></param>
/// <returns>string</returns>
public string TestFunction(string s, int i)
{

}

Writing Add-Ins for Visual Studio .NET
Writing Add-ins for Visual Studio .NET
by Les Smith
Apress Publishing