At the first when I want to create a file with Taglib
I get following error.
Error:
CS1503 Argument 1: cannot convert from 'string' to 'TagLib.File.IFileAbstraction'
string fileToOpen=@"D:\music.mp3";
TagLib.File musicinfo = TagLib.File.Create(fileToOpen);
textBox5.Text = musicinfo.Tag.Title;
textBox2.Text = musicinfo.Tag.FirstAlbumArtist;
textBox3.Text = musicinfo.Tag.Album;
The path of the file is a string, why does this error appear ?