Hello Devz, Do you know Open Movie Database (OMDB)? It’s like IMDB but providing an API to get information about any movie or TV show. OMDBAPI is free but limited to 1000 request per day. First you must generate your API Key via this page http://www.omdbapi.com/apikey.aspx You will receive your personal key via email. Don’t forget to […]
C# – JSON serialize and deserialize
Hello Devz, JSON files are really common, we can see them everywhere. They provide a good structure to organize data, are simpler and lighter than XML files, and still human readable. In this simple example, we will show you how to use the Json.NET library (Newtonsoft) from NuGet. It is pretty simple to serialize and […]