Ways to synchronize interface and implementation comments in C#

32,113

Solution 1

You can do this quite easily using the Microsoft Sandcastle (or NDoc) inheritdoc tag. It's not officially supported by the specification, but custom tags are perfectly acceptable, and indeed Microsoft chose to copy this (and one or two other tags) from NDoc when they created Sandcastle.

/// <inheritdoc/>
/// <remarks>
/// You can still specify all the normal XML tags here, and they will
/// overwrite inherited ones accordingly.
/// </remarks>
public void MethodImplementingInterfaceMethod(string foo, int bar)
{
    //
}

Here is the help page from the Sandcastle Help File Builder GUI, which describes its usage in full.

(Of course, this isn't specifically "synchronisation", as your question mentions, but it would seem to be exactly what you're looking for nonetheless.)

As a note, this sounds like a perfectly fair idea to me, though I've observed that some people think you should always respecify comments in derived and implemented classes. (I've actually done it myself in documenting one of my libraries and I haven't see any problems whatsoever.) There's almost always no reason for the comments to differ at all, so why not just inherit and do it the easy way?

Edit: Regarding your update, Sandcastle can also take care of that for you. Sandcastle can output a modified version of the actual XML file it uses for input, which means you can distribute this modified version along with your library DLL instead of the one built directly by Visual Studio, which means you have the comments in intellisense as well as the documentation file (CHM, whatever).

Solution 2

If you're not using it already, I strongly recommend a free Visual Studio addon called GhostDoc. It eases the documentation process. Have a look at my comment on a somewhat related question.

Although GhostDoc won't make the synchronization automatically, it can help you with the following scenario:

You have a documented interface method. Implement this interface in a class, press the GhostDoc shortcut key, Ctrl-Shift-D, and the XML comment from the interface will be added to the implemented method.

Go to the Options -> Keyboard settings, and assign a key to GhostDoc.AddIn.RebuildDocumentation (I used Ctrl-Shift-Alt-D). alt text

Now, if you change the XML comment on the interface, just press this shortcut key on the implemented method, and the documentation will be updated. Unfortunately, this doesn't work vice-versa.

Solution 3

I usually write comments like this:

/// <summary>
/// Implements <see cref="IMyInterface.Foo(string, int)"/>
/// </summary>
/// <returns></returns>

The methods are used only by the interface, so this comment is not even shown in tooltips when coding.

Edit:

If you want to see docs when you call the class directly and not using the interface, you need to write it twice or use a tool like GhostDoc.

Solution 4

Try GhostDoc! It works for me :-)

Edit: Now that I've been made aware of Sandcastle's support for <inheritdoc/>, I endorse Noldorin's post. It's a much better solution. I still recommend GhostDoc on a general basis, though.

Solution 5

I have a better answer: FiXml., I'm one of its authors

Cloning the is certainly working approach, but it has significant disadvantages, e.g.:

  • When the original comment is changed (which frequently happens during development), its clone is not.
  • You're producing huge amount of duplicates. If you're using any source code analysis tools (e.g. Duplicate Finder in Team City), it will find mainly your comments.

As it was mentioned, there is <inheritdoc> tag in Sandcastle, but it has few disadvantages in comparison to FiXml:

  • Sandcastle produces compiled HTML help files - normally it does not modify .xml files containing extracted XML comments (at last, this can't be done "on the fly" during the compilation).
  • Sandcastle's implementation is less powerful. E.g. the is no <see ... copy="true" />.

See Sandcastle's <inheritdoc> description for further details.

Short description of FiXml: it is a post-processor of XML documentation produced by C# \ Visual Basic .Net. It is implemented as MSBuild task, so it's quite easy to integrate it to any project. It addresses few annoying cases related to writing XML documentation in these languages:

  • No support for inheriting the documentation from base class or interface. I.e. a documentation for any overridden member should be written from scratch, although normally it’s quite desirable to inherit at least the part of it.
  • No support for insertion of commonly used documentation templates, such as “This type is singleton - use its <see cref="Instance" /> property to get the only instance of it.”, or even “Initializes a new instance of <CurrentType> class.”

To solve mentioned issues, the following additional XML tags are provided:

  • <inheritdoc />, <inherited /> tags
  • <see cref="..." copy="..." /> attribute in <see/> tag.

Here is its web page and download page.

Share:
32,113

Related videos on Youtube

Valentin V
Author by

Valentin V

Fraud detection at fingerprintjs.com Building open source tools and SaaS to empower developers to stop online fraud. Stop fraud, spam, and account takeovers with 99.5% accurate browser fingerprinting as a service.

Updated on July 26, 2020

Comments

  • Valentin V
    Valentin V almost 4 years

    Are there automatic ways to sync comments between an interface and its implementation? I'm currently documenting them both and wouldn't like to manually keep them in sync.

    UPDATE:

    Consider this code:

    interface IFoo{
        /// <summary>
        /// Commenting DoThis method
        /// </summary>
        void DoThis();
    }
    class Foo : IFoo {
        public void DoThis();
    }
    

    When I create class like this:

    IFoo foo=new Foo();
    foo.DoThis();//comments are shown in intellisense
    

    Here comments are not shown:

    Foo foo=new Foo();
    foo.DoThis();//comments are not shown in intellisense
    

    The <inheritDoc/> tag will perfectly generate the documentation in Sand Castle, but it doesn't work in intellisense tooltips.

    Please share your ideas.

    Thanks.

  • Steve
    Steve about 15 years
    Agree with comment from Stefan in that GhostDoc isn't perfect, however it does automatically pull in "inherited" comments like this so it is a pretty good answer to the question.
  • Tor Haugen
    Tor Haugen about 15 years
    Hey, that's pretty nice! I like Sandcastle!
  • Noldorin
    Noldorin about 15 years
    Post edited to answer updated question.
  • Valentin V
    Valentin V about 15 years
    That's a helpful edit, thanks!
  • Shivang Gangadia
    Shivang Gangadia almost 12 years
    can this be done on a class level? so that I don't have to put /// <inheritdoc /> before every method.
  • stephen
    stephen over 9 years
    One thing I've noticed is that <inheritdoc/> doesn't inherit the documentation for the <param> tag.
  • deadlydog
    deadlydog over 8 years
    Go up-vote this user voice feature to have <inheritdoc /> officially added to the C# spec and work with VS intellisense visualstudio.uservoice.com/forums/121579-visual-studio/…
  • Vin Shahrdar
    Vin Shahrdar about 6 years
    I'm not sure what I'm doing wrong, but after publishing my NuGet package for my library. The <inheritdoc/> comments are showing up as blank. Is anybody else experiencing this?