ikk*_*tim 2 c# xml documentation xml-documentation
以下XML注释给出了编译时警告:
/// <summary>
/// Provides data for the <see cref="TextDraw.Click"/> event.
/// </summary>
public class TextDrawEventArgs : EventArgs
{
//...
public TextDraw TextDraw { get; private set; }
}
Run Code Online (Sandbox Code Playgroud)
我希望TextDraw.Click引用TextDraw类中的事件,但它正在拾取TextDraw作为此TextDrawEventArgs类型的属性.
我该如何解决这个问题?