To use the library
Add a reference to TheMovieDBLib.dll in your project.
Create an instance of TmdbAPI passing in the TheMovieDb.org api key:
TmdbAPI api = new TmdbAPI("apikey");
Call the appropriate methods:
TmdbMovie[] movies = api.MovieSearch("batman");
To use the sample application
In order to use the sample application, you will need an API key from themoviedb.org. Instructions can be found
here.
Once a key has been obtained, open the TheMovieDBTestApp project and under properties, open Settings.settings and enter the key in the value of ApiKey.
Save and run the application.