xml documentation

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Bill

    xml documentation

    Does anyone know where I can find good information on formatting the XML
    comments in C#? I want to add line breaks, color, spacing, etc.. but I
    can't find this documented anywhere in MSDN. I am using NDoc to build a
    help file from the developer studio generated XML file.

    --
    Bill


  • Bruce Wood

    #2
    Re: xml documentation

    You can enter anything you like in XHTML. I don't know whether NDoc
    inserts NDoc also inserts class="..." attributes for many things within
    the generated HTML, so you can use CSS (cascading style sheets) to
    colour certain elements or otherwise change their appearance.

    Line breaks, for example, you can insert using simple XHTML: <br/>

    Comment

    Working...