dea*_*mon 7 .net c# documentation sandcastle api-doc
如果类实现了接口中定义的方法,则可以选择是复制文档还是引用它<see cref="..." />.
public interface IPerformer
{
/// <summary>
/// Do something useful.
/// </summary>
/// <param name="something">Object to do something with</param>
void Do(Something something);
}
public class Implementation : IPerformer
{
/// <copy from="IPerformer" /> # that is what I want!
public void Do(Something something)
{
// implementation ...
}
}
Run Code Online (Sandbox Code Playgroud)
是否有可能让API文档工具(Sandcastle)自动复制文档(什么会使阅读API文档更加舒适)?@inheritDoc来自Java Doc的东西?