views:

193

answers:

3

As in:

public string[,] GetHelp() {
        return new string[,] {...things...}
}

And how do I search for it in the documentation?

+10  A: 

It's a multi-dimensional array.

Here's the MSDN page for multi-dimensional arrays:

Multidemensional Arrays (C# Programming Guide)

Justin Niessner
+6  A: 

That's a multidimensional array.

Not sure what the best way to search for such a thing in documentation is, but you may have found at least the second best way: Ask on SO.

Gus
+1 for suggesting usage of documentation before asking here.
Martinho Fernandes
+3  A: 

It's a multi-dimensional array declaration.

http://msdn.microsoft.com/en-us/library/2yd9wwz4.aspx

Michael Todd