17

In C#, I am trying to use <see cref="blah"/> to reference a method signature that contains the params keyword. I know this converts the parameter list to an array, but I can't even figure out how to refer to an array in a CREF attribute. I am finding nothing in my searches and no one I know has any idea, either. The compiler is choking on the square brackets. I've tried all kinds of different combinations, using curly braces, using the Array class, but nothing is working. Does anyone know this?

wonea
  • 4,783
  • 17
  • 86
  • 139
Matt H
  • 7,311
  • 5
  • 45
  • 54

3 Answers3

39

According to the B.3.1 ID string format article, referencing an array is done with [square brackets] (with optional lowerbound:size specifiers) but if you just want to refer to an array of a certain type (or even an Object array), you can't just write

<see cref="Object[]"/>

instead you need to specify you're making a type reference with the T: prefix, like

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

This does not seem to apply when referencing a specific overload of a method, such as

<seealso cref="String.Join(String, String[])"/>

Olivier Dagenais
  • 1,482
  • 2
  • 18
  • 20
  • Looks like prefix "M:" (``) is crucial. Especially for overloaded methods. Thanks for a nice hint. – ony Sep 02 '12 at 18:19
12

The ECMA 334 Standard PDF, Annex E contains a decent overview of XML Documentation comments. You can download the standard at:

http://www.ecma-international.org/publications/standards/Ecma-334.htm

Specifically, you'll want section E.3.1, starting on page 496.

Similar content is also at MSDN (though MSDN seems to have terrible navigation on this topic, making it difficult to find the other sections):

http://msdn.microsoft.com/en-us/library/aa664787(VS.71).aspx

The equivalent to E.3.1:

http://msdn.microsoft.com/en-us/library/aa664807(VS.71).aspx

You may also find Mono's documentation useful:

http://www.go-mono.com/docs/index.aspx?tlink=29@man%3amdoc(5)

Specfically, the "CREF FORMAT" section covers the ID string conventions.

Update 2018/05/23

The URL for the ECMA-334 standard PDF above links to the latest edition of the standard. In 2009, that was the 4th edition of the standard. However, as of December 2017, the 5th edition is current, and section E.3.1 from the 4th edition became section D.4.2 in the 5th edition.

The previous versions of the ECMA-334 standard are available for download from the following page: https://www.ecma-international.org/publications/standards/Ecma-334-arch.htm

Ryan Prechel
  • 6,592
  • 5
  • 23
  • 21
jonp
  • 13,512
  • 5
  • 45
  • 60
  • 7
    +1 For the research and slew of references, but I still think this answer would benefit from an example fitting the OP's requirements. – Basic Dec 14 '15 at 21:16
  • 2
    This answer will be pretty useless when the links stop working. – James Oct 09 '17 at 13:05
6

You just leave out the param keyword and put in the type like this:

/// <summary>
/// <see cref="Method(string[])"/>
/// </summary>
public static void Main()
{
    Method("String1", "String2");
}

public static void Method(params string[] values)
{
    foreach (string value in values)
    {
        Console.WriteLine(value);
    }
}
wonea
  • 4,783
  • 17
  • 86
  • 139
Martin Brown
  • 24,692
  • 14
  • 77
  • 122