문제

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

도움이 되었습니까?

해결책

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.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top