I\'m trying to play an MP3 file in C# using this guide: http://www.crowsprogramming.com/archives/58
And I\'m doing everything listed, but I still can\'t play any mus
I had the same problem and I solved by setting the player as Static, for example:
public class MiClass(){ static WMPLib.WindowsMediaPlayer wplayer; private void PlayMusic() { wplayer = new WMPLib.WindowsMediaPlayer(); wplayer.URL = "c:\shoryuken.mp3"; wplayer.controls.play(); } }