SoundPlayer not playing any bundled windows sounds PCM wav files
问题 In C# I cannot get SoundPlayer class from System.Media to play any wav from my C:\Windows\Media folder using the following code. All I get is no sound: String filename = "C:\\Windows\\Media\\tada.wav"; SoundPlayer sp = new SoundPlayer(filename); sp.Load(); sp.Play(); I have checked the wave file "tada.wav" with a program called "Gspot" that tells me the audio codec is "PCM Audio". I do not receive any compiler warnings or errors and there is no exceptions raised when I run the program. I just