As in:
public string[,] GetHelp() {
return new string[,] {...things...}
}
And how do I search for it in the documentation?
As in:
public string[,] GetHelp() {
return new string[,] {...things...}
}
And how do I search for it in the documentation?
It's a multi-dimensional array.
Here's the MSDN page for multi-dimensional arrays:
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.