Exemple #1
0
        static void Main(string[] args)
        {
            Console.Title = "Supermarket!";

            Product product = new Product();

            product.Start();

            Console.WriteLine("Press Enter to exit");
            Console.ReadLine();
        }