I'm trying to write a <see cref>
XML comment for the type byte[]
.
Unfortunately, the standard syntax:
<see cref="T:System.Byte[]">
causes an error when executing the Remove and Sort using VS command, as described here: https://connect.microsoft.com/VisualStudio/feedback/details/785457/remove-unused-usings-falsely-reports-that-project-does-not-build-for-certain-files
The fact is that this is the correct syntax, but it causes the error anyway.
For now, I used the <c>
tag to just emphasize the type name in the commentary, but this is obviously a workaround.
Anyone knows a syntax that compile and does not cause that nasty VS bug to come out?