views:

41

answers:

2

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?

A: 

You should perhaps have <summary>...</summary> around:

/// <summary>
/// This is a set of extensions that allow more operations on a <see cref="byte[]"/>.
/// </summary>
Vlad
I did but i cut it from the example because i didn't want to type 3 lines.
Scott Chamberlain
+3  A: 

As described in this post, use

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