Is there a library for reading and writing ID3 tags to an MP3 in C#?
I've actually seen a couple when searching, anybody using any that can be recommended?
I am developing a WinForm application. I want to play a MP3 file when the user clicks a button.
The MP3 file is located in the file system of the computer where the application is executed.
I have Googled for …
I put music.mp3 in resources and then I added Windows Media Player to references. I wrote this code:
WindowsMediaPlayer wmp = new WindowsMediaPlayer();
wmp.URL = "music.mp3";
wmp.controls.play();
It doesn't work. How can I play .mp3 file from …