System.NotSupportedException错误

时间:2018-06-08 05:04:15

标签: c#

我遇到System.NotsupportedException错误。它表示不支持给定路径的格式。我在为游戏添加音乐时遇到此错误。我该怎么做才能摆脱它?

SoundPlayer player = new SoundPlayer("@\\mymusic.wav");
player.Play();

编码时似乎没有错误,但是当我运行代码时,它显示System.NotsupportedException错误。 你能告诉我吗。我做错了什么?

1 个答案:

答案 0 :(得分:1)

您的语法不正确。

更改

SoundPlayer player = new SoundPlayer("@\\mymusic.wav");
player.Play();

...至

// move @ to front and outside quotes
SoundPlayer player = new SoundPlayer(@"\mymusic.wav"); 
player.Play();

...假设.wav文件与您的应用程序在同一个驱动器上。