5 lines
228 B
C#
5 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" };
|