XML形式のコメントにジェネリック型へのリンクを設定したいときがあります。
例えば、こんな具合です。
<see cref="System.Collections.Generic.List<T>"/>
でもXMLなので「
解決方法
実体参照を使います。こんな具合です。
<see cref="System.Collections.Generic.List<T>"/>
サンプルコードも
<example> <code> int i = 1; if (i < hoge) { Console.Write("iはhogeより小さい"); } </code> </example>
不等号は実体参照で記述します。
<example> <code> int i = 1; if (i < hoge) { Console.Write("iはhogeより小さい"); } </code> </example>