6 lines
118 B
C#
6 lines
118 B
C#
string[] things = {"Apple", "Banana", "Coconut"};
|
|
|
|
foreach (string thing in things)
|
|
{
|
|
Console.WriteLine(thing);
|
|
}
|