How can I inherit a C # resume in another class? (e.g. Javadoc inheritance)

Possible duplicate:
.NET xml docs - inherited documentation

Is it possible to use something like Javadoc {@inheritDoc} in C # .NET?

Fe I am writing a summary for the interface method and the implemented class method does exactly what I wrote there, so I copy + pasting atm. which does not seem very wise.

thanks

+6
c # javadoc summary
source share
2 answers

You can use Xtensive.MSBuildTasks (broken link) to automatically copy the documentation for you.

Another Sandcastle option that has a <inheritdoc /> .

+5
source share

There is a GhostDoc add-in that allows you to copy text with a simple keystroke.

http://submain.com/products/ghostdoc.aspx

+2
source share

All Articles