There are several .NET libraries that can read the RDF dump format:
Data dumps are also formatted as tab-delimited values, so you can use any CSV parser to parse each line as a triple.
Make sure you read the developer docs about how data dumps are printed. In principle, each line forms a triple in which there is a subject, predicate and object. To get all the data about the films, you will look for triples with a predicate starting with / film /.
source share