Ejemplo n.º 1
0
        public static void SomeMethodRunsAt1600()
        {
            ReadingFromFile <RestaurantInformation> readingFromFile   = new ReadingFromFile <RestaurantInformation>();
            List <RestaurantInformation>            listOfRestaurants = readingFromFile.Read();

            listOfRestaurants.Sort();
            foreach (RestaurantInformation restaurantInfo in listOfRestaurants)
            {
                Console.WriteLine(string.Format("{0:d}", restaurantInfo.Date));
            }
        }