20
1
using System;
2
3
using System.Collections.Generic;
4
public class Program
5
{
6
public static void Main()
7
{ var listTableNames = new List<string>();
8
var liststTable1 = new List<string> { "test1", "test2", "test3" };
9
var liststTable2 = new List<string> { "test4", "test5", "test6" };
10
var liststTable3 = new List<string> { "test7", "test8", "test9" };
11
12
listTableNames.AddRange(liststTable1);
13
listTableNames.AddRange(liststTable2);
14
listTableNames.AddRange(liststTable3);
15
16
Console.WriteLine("___Results___");
17
listTableNames.ForEach(Console.WriteLine);
18
19
}
20
}
Cached Result
Welcome to the World's Best Tea Shop
1. Process a Single Order
2. Process Multiple Orders From a File
3. Quit
Enter Menu Choice (1, 2, or 3):
>
1. Process a Single Order
2. Process Multiple Orders From a File
3. Quit
Enter Menu Choice (1, 2, or 3):