[Doxygen-users] C# getting class description
Brought to you by:
dimitri
From: rpj <rpj...@gm...> - 2014-03-25 21:19:37
|
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. |