I am trying to add documentation to my C# code. But the following gives me a malformed xml error. I know that the error is because of 'List"Display"'. It's trying to find "/Display". But there won't be a "/Display" because it's a part of my code example. Can someone help me with this? Thank you.
/// <summary>
/// Retrieves a list of <c>Display</c>
/// </summary>
/// <example>
/// <code>
/// List<Display> templates = DisplayManager.GetDisplays();
/// </code>
/// </example>