6 lines
228 B
C#
6 lines
228 B
C#
|
|
var fruit = new[] { "apple", "orange" };
|
||
|
|
var fruit = new string[] { "apple", "orange" };
|
||
|
|
string[] fruit = new[] { "apple", "orange" };
|
||
|
|
string[] fruit = new string[] { "apple", "orange" };
|
||
|
|
string[] fruit = { "apple", "orange" };
|