I like the c# styled xml comments better. It's in the doxygen wish list so pretty soon it will be very common. Java doc...thats the old, ugly, (standard), Java, way :lol:
/// <summary>
/// Implements the OnBeginShutdown method of the IDTExtensibility2
/// interface. Receives notification that the host application is being
/// unloaded.
/// </summary>
/// <param term='custom'>Array of parameters that are host application specific.</param>
/// <seealso class='IDTExtensibility2' />
public void OnBeginShutdown(ref Array custom)
{
if (this._editor != null)
{
this._editor.Close();
}
}