你如何添加<(小於)或>(大於)在Visual Studio的總結評論?我在Visual Studio 2008中你如何添加< or >在Visual Studio摘要標籤?
我有一個通用的方法:
public bool IsMemberProtected<T>(Expression<Func<T, object>> expression)
很想有東西彙總標籤這樣
/// <summary> /// Determines whether a member is protected. /// /// Usage: IsMemberProtected<ExampleType>(x => x.Member) /// </summary>
但是當我做當開發人員將代碼中的方法懸停在代碼中查看摘要標籤時,該屬性的工具提示不再有效。
想法?