문제

I have a library for which I have to create the XML documentation. Therefore, for all public methods and properties I inserted XML comments. Unfortunately, for some comments I have to insert the special character < or > to describe the return type (a List). The compiler continues to issue a warning for invalid character and indicates the character <.
How do I persuade the compiler to accept this character without warnings?

도움이 되었습니까?

해결책

How do I persuade the compiler to accept this character without warnings?

You don't. You have to use the equivalent XML entity (&lt;)

Note that if you use the <see cref="..." /> element, you can specify the type like this:

<see cref="List{T}"/>
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top