using System;class Test{ static void Main() { WMPLib.WindowsMediaPlayer wmp = new WMPLib.WindowsMediaPlayer(); wmp.URL = @"C:\thoulan.mp3"; wmp.controls.play(); Console.ReadLine(); }}