标签: c# loops mp3 naudio
我使用NAudio播放mp3,但我不知道如何在打开程序时循环播放音乐?
IWavePlayer waveOutDevice = new WaveOut(); AudioFileReader musicBackground = new AudioFileReader(@"....mp3"); waveOutDevice.Init(musicBackground); waveOutDevice.Play();