インターフェイスを実装するクラスのリストのようなものを意味する場合<seealso>
は、ドキュメントヘッダーのタグを使用できます。
/// <summary>
/// Interface that AutoCAD commands are required to implement.
/// </summary>
/// <seealso cref="My.Namespace.ClassThatImplementsThisInterface"/>
/// <seealso cref="My.Namespace.AnotherClassThatImplementsThisInterface"/>
public interface IMyInterface
インターフェイスメソッドを参照するメソッドでこれを行うこともできます。
public class ClassThatImplementsThisInterface : IMyInterface
{
/// <summary>
/// </summary>
/// <seealso cref="My.Namespace.IMyInterface.InterfaceMethod" />
public void InterfaceMethod()
{
}
}
私はこれまでC#でドキュメントジェネレーターを1つしか使用しておらず、その時点で上記のメソッドを使用していなかったため、これを当然のこととは言えませんが、ジェネレーターはこれらの参照を取得し、ドキュメント内に参照されるメソッドへのリンクを作成する必要があると思います/ class/interface。