/want to put a musical easter egg into my app
The SoundPlayer code below seems to only like mp3s :-(
Stream stream = new MemoryStream(Properties.Resources.MyMp3, false);
using (SoundPlayer player = new SoundPlayer(stream))
{
player.PlaySync();
}
Thanks