I'm using TagLib to read ID3 data.
I can't read data properly from ID3 tag when they contain cyrillic characters.
(I'm getting something like "²íòó³ö³ÿ"
).
Here is my code:
TagLib.File f = TagLib.File.Create(songFileName);
string title = f.Tag.Title;
What have I missed?