Hi all,

I am using C# for my projects and this is how my code and comments are
structured.

/*!
 * Here I would have class description
 * Author
 * Properties
 *     Prop 1 description
 *     Prop 2 description
 */
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace Example.Doxygen.Sample
{
    class Sample
    {
        public Sample()
        {

        }

        public int Prop1 { get; set; }

        public string Prop2 { get; set; }
    }
}


Is there a way to configure doxygen to get those comments as class
description or I have to have them just above the class name?

I am aware that I could do it this way and it works fine:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace Example.Doxygen.Sample
{
    /*!
    * Here I would have class description
    * Author
    */
    class Sample
    {
        public Sample()
        {

        }

        /// <summary>
        /// Description of Prop 1
        /// </summary>
        public int Prop1 { get; set; }

        /// <summary>
        ///  Description of Prop 2
        /// </summary>
        public string Prop2 { get; set; }
    }
}


But i have so many files that i would have to update that i am trying to
find a different solution.

Thanks,

R



--
View this message in context: 
http://doxygen.10944.n7.nabble.com/C-getting-class-description-tp6575.html
Sent from the Doxygen - Users mailing list archive at Nabble.com.

------------------------------------------------------------------------------
Learn Graph Databases - Download FREE O'Reilly Book
"Graph Databases" is the definitive new guide to graph databases and their
applications. Written by three acclaimed leaders in the field,
this first edition is now available. Download your free book today!
http://p.sf.net/sfu/13534_NeoTech
_______________________________________________
Doxygen-users mailing list
Doxygen-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/doxygen-users

Reply via email to