No "Description" in resulting HTML File using NDOC (Version 1.2.1303.41457).

From the Framework side I think I am doing everything correctly, because the
resulting
XML has the coments.

Is this a known NDoc problem?
Is there a NDoc newsgroup?

C# :

public enum Back
{
/// Crosshatch/CROSSHATCH (0) - CardsDll (53)
Crosshatch,
...
}

resulting XML :

<member name="F:mj10777_Cards.Back.Crosshatch">
Crosshatch/CROSSHATCH (0) - CardsDll (53)
</member>

Mark Johnson, Berlin Germany
mj10777@mj10777.de

Re: Problems with enum Documentation (NDoc Problem?) by Peter

Peter
Wed Dec 17 11:22:58 CST 2003

You should use summary tags:-

public enum Back
{
///<summary>
/// Crosshatch/CROSSHATCH (0) - CardsDll (53)
///</summary>
Crosshatch,
...
}

Peter

--
Peter Foot
Windows Embedded MVP
OpenNETCF.org Senior Advisor
www.inthehand.com | www.opennetcf.org

"Mark Johnson" <mj10777@mj10777.de> wrote in message
news:3fe08a77$0$19077$9b4e6d93@newsread2.arcor-online.net...
> No "Description" in resulting HTML File using NDOC (Version
1.2.1303.41457).
>
> From the Framework side I think I am doing everything correctly, because
the
> resulting
> XML has the coments.
>
> Is this a known NDoc problem?
> Is there a NDoc newsgroup?
>
> C# :
>
> public enum Back
> {
> /// Crosshatch/CROSSHATCH (0) - CardsDll (53)
> Crosshatch,
> ...
> }
>
> resulting XML :
>
> <member name="F:mj10777_Cards.Back.Crosshatch">
> Crosshatch/CROSSHATCH (0) - CardsDll (53)
> </member>
>
> Mark Johnson, Berlin Germany
> mj10777@mj10777.de
>
>



Re: Problems with enum Documentation (NDoc Problem?) by Mark

Mark
Wed Dec 17 11:43:18 CST 2003

Ahh, what a good answer to a stupid question.

It works very well.

Thank you,

Mark Johnson, Berlin Germany
mj10777@mj10777.de

"Peter Foot [MVP]" <feedback@nospam-inthehand.com> schrieb im Newsbeitrag
news:OCB6nJMxDHA.2084@TK2MSFTNGP09.phx.gbl...
> You should use summary tags:-
>
> public enum Back
> {
> ///<summary>
> /// Crosshatch/CROSSHATCH (0) - CardsDll (53)
> ///</summary>
> Crosshatch,
> ...
> }
>
> Peter
>
> --
> Peter Foot
> Windows Embedded MVP
> OpenNETCF.org Senior Advisor
> www.inthehand.com | www.opennetcf.org
>
> "Mark Johnson" <mj10777@mj10777.de> wrote in message
> news:3fe08a77$0$19077$9b4e6d93@newsread2.arcor-online.net...
> > No "Description" in resulting HTML File using NDOC (Version
> 1.2.1303.41457).
> >
> > From the Framework side I think I am doing everything correctly, because
> the
> > resulting
> > XML has the coments.
> >
> > Is this a known NDoc problem?
> > Is there a NDoc newsgroup?
> >
> > C# :
> >
> > public enum Back
> > {
> > /// Crosshatch/CROSSHATCH (0) - CardsDll (53)
> > Crosshatch,
> > ...
> > }
> >
> > resulting XML :
> >
> > <member name="F:mj10777_Cards.Back.Crosshatch">
> > Crosshatch/CROSSHATCH (0) - CardsDll (53)
> > </member>
> >
> > Mark Johnson, Berlin Germany
> > mj10777@mj10777.de
> >
> >
>
>