我希望将我的声音嵌入名为“声音”的文件夹中。在资源方面,但我尝试了How to play audio from resource'汇编&-streams以及我在Google上找到的其他内容,但没有骰子。
我的一种方法是这样的:
foreach (string str in names)
{
try
{
SoundPlayer thisSound = new SoundPlayer(str + ".wav");
thisSound.PlaySync();
}
...
因此,用户输入名称,它会播放与名称相对应的声音。所以对于每个名字,我都有一个声音文件。这适用于路径,但如果我想通过嵌入的声音文件播放名称,我该怎么做?提前谢谢。