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)); } }