コード例 #1
0
ファイル: GroceryStore.cs プロジェクト: giokats/Projects
        static void Main(string[] args)
        {
            Console.Title = "Supermarket!";

            Product product = new Product();

            product.Start();

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