Frage

I want to write a wrapper class for the set of existing classes. When I go to the definition of existing class it shows meta-data file with comments like

     // Summary:
     //     This is Test comments

As I am writing the wrapper class it has mostly same functions & I want to use existing comments in my wrapper class. The problem is that it does not show the comments in documentation style like

             /// <summary>
                    /// This is test comment
                    /// </summary>

Is there any tool to convert first comment type into second or view the meta-data file with summary comments only?

Atul Sureka

War es hilfreich?

Lösung

If you open both files together then you could use GhostDoc to add the XML comments (Ctrl-Shift-D) and then copy/paste the actual comment between the tags that GhostDoc creates for you. Not quite automatic but shouldnt be too bad.

Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit StackOverflow
scroll top