11

All it is in the question, I have Type.GetType("System.String[*]") in some code, i don't know what this type is and can't really find anything about this star inside an array.

What key word will be relevant for this ?

Toto
  • 7,491
  • 18
  • 50
  • 72

1 Answers1

11

From MSDN

Type.GetType("MyArray[*]") gets a single-dimension array with unknown lower bound

Steve Mitcham
  • 5,268
  • 1
  • 28
  • 56