Esempio n. 1
0
 public void Dispose()
 {
     if (stream != null)
     {
         stream.Dispose();
         stream = null;
     }
 }
Esempio n. 2
0
 public MidiPlayer(string soundFontPath)
 {
     stream = new MidiSoundStream(soundFontPath, 44100);
 }