static void Main(string[] args) { ExampleQueue eq = new ExampleQueue(); eq.Run(); // Wait... System.Threading.Thread.Sleep(100000); }
static void Main(string[] args) { ExampleArrayList exampleArrayList = new ExampleArrayList(); exampleArrayList.ShowExample(); ExampleHashTable exampleHashTable = new ExampleHashTable(); exampleHashTable.ShowExample(); ExampleStack exampleStack = new ExampleStack(); exampleStack.ShowExample(); ExampleQueue exampleQueue = new ExampleQueue(); exampleQueue.ShowExample(); ExampleList exampleList = new ExampleList(); exampleList.ShowExample(); ExampleDictionary exampleDictionary = new ExampleDictionary(); exampleDictionary.ShowExample(); ExampleStackGeneric exampleStackGeneric = new ExampleStackGeneric(); exampleStackGeneric.ShowExample(); ExampleQueueGeneric exampleQueueGeneric = new ExampleQueueGeneric(); exampleQueueGeneric.ShowExample(); ExampleLinkedList exampleLinkedList = new ExampleLinkedList(); exampleLinkedList.ShowExample(); ExInterfaces exInterfaces = new ExInterfaces(); exInterfaces.ShowExample(); Console.ReadKey(); }