我想在我的网络项目中播放声音文件。声音文件存储在数据库中。当我尝试播放该文件时,出现此错误。你能帮我解决这个问题吗?这是我的播放代码。
byte[] bytes = dt.Rows[0]["VOICE_FILE"] as byte[];
using (Stream s = new MemoryStream(bytes))
{
System.Media.SoundPlayer myPlayer = new System.Media.SoundPlayer(s);
myPlayer.Play();
}