2009-08-20 43 views

回答

13

对于播放声音干脆,没有互动,你可以使用System.Media.SoundPlayer:

System.Media.SoundPlayer player = new System.Media.SoundPlayer(); 
player.SoundLocation = "soundFile.wav"; 
player.Play();