I did:
Put MediaInfo.dll in \bin\debug
Included the file MediaInfoDLL.cs in my project
In the source code added "using MediaInfoLib;"
So why do I get the error ?
Sourcecode:
class Program { [STAThread] static void Main(string[] args) { var mi = new MediaInfo(); mi.Open(@"H:\\watch\\Fitzcarraldo.mkv"); Console.WriteLine(mi.Inform()); Console.ReadKey(); mi.Close(); } }