尝试运行简单的音频播放器后,我收到此错误:
System.UriFormatException: Invalid URI: The format of the URI could not be determined.
这是我的代码:
using System;
namespace PurePlayer
{
class MainClass
{
public static void Main(string[] args)
{
System.Media.SoundPlayer player = new System.Media.SoundPlayer("~/Desktop/audio.wav");
player.Load();
player.Play();
}
}
}
请帮我弄清楚音频无法播放的原因。
仅供参考,我正在运行OSX