[.net] XML documentation and generics

Started by
0 comments, last by DrGUI 18 years, 9 months ago
Sorry about another thread but this didn't fit in to the others. I have just made my DataPool generic and now the compiler's giving me lots of warnings from the XML saying that it cannot find DataPool. I have:
<see cref="DataPool"/>
How do I indicate that it's generic? Putting 'DataPool<>' didn't work. Thanks a lot in advance.
Advertisement
I found out now I know the address of the beta docs - to write
DataPool<T>

into the XML tags you need to write
DataPool<T>


EDIT: the forum turns the tags into the brackets!
Just take out the hashes:
DataPool#&#lt;T#&#gt;</pre>

This topic is closed to new replies.

Advertisement