인터페이스와 구현간에 주석을 자동으로 동기화하는 방법이 있습니까? 나는 현재 둘 다 문서화하고 있으며 수동으로 동기화하고 싶지 않습니다.
최신 정보:
이 코드를 고려하십시오.
interface IFoo{
/// <summary>
/// Commenting DoThis method
/// </summary>
void DoThis();
}
class Foo : IFoo {
public void DoThis();
}
다음과 같은 클래스를 만들 때 :
IFoo foo=new Foo();
foo.DoThis();//comments are shown in intellisense
여기에 주석이 표시되지 않습니다.
Foo foo=new Foo();
foo.DoThis();//comments are not shown in intellisense
<inheritDoc/>
태그 완벽 모래 성 문서를 생성하지만, IntelliSense를 툴팁에서 작동하지 않습니다.
당신의 아이디어를 공유하십시오.
감사.