Statiq.Docs
Statiq.Docs copied to clipboard
Getting incorrect output from references to certain generic methods
I have a few XML comments with <see> tags that are generating incorrect output:
<see cref="Array.Resize"/> is generating System.Array.Resize``1(``0[]@,System.Int32)
and <see cref="List{T}.Sort(Comparison{T})"/> is generating
System.Collections.Generic.List`1.Sort(System.Comparison{`0})
I was having similar issues when using generic interfaces.
<see cref="ICollection{T}"/><see cref="IDictionary{TKey, TValue}"/>(However it worked when no spaces in it<see cref="IDictionary{TKey,TValue}"/>)
I was using SourceFiles as input if that makes any difference. I vaguely remember seeing similar issue on wyamm.io site. I can't seem to find it again now though. It was late and I was very tired.