6

Possible Duplicate:
.NET xml docs - inheriting documentation

Can I use something like Javadoc's {@inheritDoc} in C#.NET ?

F.e. I write summary for interface method and method of implemented class does exactly what I wrote there, so I am copy+pasting atm. which doesn't seem very wise.

Thanks

Community
  • 1
  • 1
Xorty
  • 18,367
  • 27
  • 104
  • 155

2 Answers2

5

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

Another option is Sandcastle that has the <inheritdoc /> tag.

neural5torm
  • 773
  • 1
  • 9
  • 21
Mark Byers
  • 811,555
  • 193
  • 1,581
  • 1,452
2

There's an add-on called GhostDoc, which allows you to copy the text with a simple keystroke.

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

Brian
  • 163
  • 1
  • 7