// Directions: Intermediate #7-2 - Movie Theatre
// 1) Fork YOUR Intermediate 7-1 fiddle to YOUR work area.
// 2) Add using System.Collections.Generic; to your code.
// 3) Create and instantiate a variable for a list of movies. Data Type : List<Movie> movies = new List<Movie>();
// 4) Create three movie objects from the movie class. Each movie should have different values.
// 5) Add each movie to the List of movies.
// 6) Add an override property ToString property to movie that will return the all of the property values in one field.
// 7) Loop though the movies and write the ToString property out ot the console. * See you can figure out how to get the information to should like mine does.
// 8) Submit your dotnetfiddle link in Blackboard.
// Example output:
// 1: Die Hard: 07/22/1988
// 2: Tombstone: 12/24/1993
// 3: Lord of the Rings: Return of the King: 12/17/2003
using System;
public class Program
{
public static void Main()
Console.WriteLine("Intermediate 7-2 is not completed yet...");
}