4
我有以下的,我不知道如何正確地在我的XML引用此評論:XML評論 - 如何正確標記另見標籤?
public static class FooExtensions
{
public static Nullable<T> FooX<T>(this Nullable<T> foo) { ... }
}
public class Bar
{
/// <summary>
/// Bar Function
/// </summary>
/// <seealso cref="??"/>
public void BarFunc() { ... }
}
所以,我的猜測是<seealso cref="M:MyNamespace.FooExtensions.FooX{T}(this Nullable{T} foo)"/>
,但我不是100%,如果這是正確的。有人知道嗎?
哦,我有ECMA PDF文檔,但即使如此,我仍然無法弄清楚。