Can anybody tell me how to get this working?
 /// <summary>
 /// I want to write: List<T>
 /// </summary>
Any time I use '<' or '>' VS gives up on me...
<c> or <code> will not do the trick.
Can anybody tell me how to get this working?
 /// <summary>
 /// I want to write: List<T>
 /// </summary>
Any time I use '<' or '>' VS gives up on me...
<c> or <code> will not do the trick.
 
    
     
    
    Try this:
/// <summary>
/// I want to write: <see cref="System.Collections.Generic.List{T}"/>
/// </summary>
 
    
    You can use regular xml escaping:
 /// <summary>
 /// I want to write: List<T>
 /// </summary>
