As in:

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

And how do I search for it in the documentation?

link|improve this question

Thanks all. Its a “Fastest Gun in the West” question. So the accepted answer goes there. – Igal Serban Dec 17 '09 at 18:52
Great question! I had no idea there even was a , operator... C# syntax is fugly at times.. – Earlz Dec 17 '09 at 18:55
feedback

3 Answers

up vote 10 down vote accepted

It's a multi-dimensional array.

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

Multidemensional Arrays (C# Programming Guide)

link|improve this answer
feedback

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.

link|improve this answer
1  
+1 for suggesting usage of documentation before asking here. – R. Martinho Fernandes Dec 17 '09 at 18:52
feedback

It's a multi-dimensional array declaration.

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

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.