using System;
using System.Collections.Generic;
class Program
{
static void Main()
{
List<string> names = new List<string>
{
"Ann",
"Bob",
"Kate",
"Tom"
};
Console.WriteLine(/* ??? */);
}
}
Post #1003
476
- ❤ 5
AK Akrus Games | Unity @akrusunity · 2.68K subscribers using System;
using System.Collections.Generic;
class Program
{
static void Main()
{
List<string> names = new List<string>
{
"Ann",
"Bob",
"Kate",
"Tom"
};
Console.WriteLine(/* ??? */);
}
}