Como reproduzir arquivos mp3 em c #?

Estou tentando reproduzir um arquivo MP3 em c # usando este guia:http://www.crowsprogramming.com/archives/58

E estou fazendo tudo listado, mas ainda não consigo tocar nenhuma música no meu programa C #. Alguém pode me dizer o que estou fazendo de errado?

 static void Main(string[] args)
    {
        WMPLib.WindowsMediaPlayer a = new WMPLib.WindowsM,ediaPlayer();
        a.URL = "song.mp3";
        a.controls.play();
    }

O arquivo de música "Song" está na pasta bin.

questionAnswers(7)

yourAnswerToTheQuestion