You can use the WindowsMediaPlayer COM control to play mp3.
Here is the manual from msdn.
WMPLib.WindowsMediaPlayer player = new WMPLib.WindowsMediaPlayer();
player.URL = @"track.mp3";
player.controls.play();
You can also use SoundPlayer to play wav files. There are also several third-party .net mp3 libraries.
source
share