First you need an object representing the movie:
public class Movie
{
public MOVIE_TYPE {get;set;}
public string Title {get;set;}
public int ID{get;set;}
}
In your main class you have to create a list containing the movie objects. The MOVIE_TYPES are indicating whether they are seen or not.
0
solved Trying to add an item to a list through console app