尝试用C#播放音频(使用Xamarin Studio)

时间:2017-04-28 01:10:30

标签: c# audio soundplayer

尝试运行简单的音频播放器后,我收到此错误:

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

0 个答案:

没有答案