My silverlight code:
var stream = TitleContainer.OpenStream("Giggle.wav");
var effect = SoundEffect.FromStream(stream);
FrameworkDispatcher.Update();
effect.Play();
The file, Giggle.wav
plays multiple times. I expected the code would wait
while the "Play" method executes.
Suggestions to make it play one instance at a time?
Thanks