public void AppendHtmlText(HtmlProvider htmlProvider){...}
would be:
///
/// Appends the HTML text.
///
/// The HTML provider.
public void AppendHtmlText(HtmlProvider htmlProvider)
{
...
}
Some more examples are:
///
/// Gets the
///
///
public string this[int index] {
get { ... }
}
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
///
/// Gets or sets a value indicating whether
/// this
///
///
///
///
public bool Cool
{
get { return true; }
set { ; }
}
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
///
/// Determines the size of the page buffer.
///
///
/// Size of the initial page buffer.
///
public int DeterminePageBufferSize(int initialPageBufferSize)
GhostDoc can be downloaded from here.