How to refer to array types in documentation comments

.net, c#, comments, documentation, visual-studio-2008

Solution

As described in this post, use

 <see cref="T:byte[]" />

Problem

I just posted this question and learned about `<see cref="">`, however when i tried ``` /// This is a set of extensions that allow more operations on a <see cref="byte[]"/>. ``` The compiler gave me warnings about it not being formatted correctly. What do I need to do so it will see the code reference correctly?

Original source

Related problems