在 c# 中记录类上的 Func 属性的参数和返回的推荐方法是什么,例如
public class Test
{
/// <summary>
/// A description of what AFunc is for.
/// </summary>
/// <remarks>
/// Should I document the parameters and return here or somewhere else?
/// </remarks>
public Func<object, string[], bool> AFunc { get; set; }
}
Visual Studio 2010 中的 Intellisense 不像为方法提供的那样在属性上提供参数或返回标记;这些仍然是最合适的标签吗?
编辑:
自从提出这个问题后,我在 msdn 上的一些 xml 文档中发现任何有效的 xml 都可以用来标记,所以我现在的想法是要么简单地使用参数并返回标签;或使用自定义标签并决定适当的命名?