Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What does System.String[*] represent? [duplicate]

Tags:

c#

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 ?

like image 336
Toto Avatar asked Jun 04 '15 19:06

Toto


1 Answers

From MSDN

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

like image 114
Steve Mitcham Avatar answered Nov 15 '22 13:11

Steve Mitcham