Plays streamed PCM-format sounds.
コード例 #1
0
ファイル: Main.cs プロジェクト: jwofles/ForkSO
 private bool LoadSoundFile(string name)
 {
     try
     {
         ApplicationStreamedSound = new StreamedMp3Sound(ApplicationDevice, new Mp3Stream(name));
     }
     catch (SoundException)
     {
         return(false);
     }
     return(true);
 }
コード例 #2
0
ファイル: Main.cs プロジェクト: RHY3756547/FreeSO
 private bool LoadSoundFile(string name)
 {
     try
     {
         ApplicationStreamedSound = new StreamedMp3Sound(ApplicationDevice, new Mp3Stream(name));
     }
     catch(SoundException)
     {
         return false;
     }
     return true;
 }