After trying to run a simple audio player, I get this error:
System.UriFormatException: Invalid URI: The format of the URI could not be determined.
Here's my code:
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();
}
}
}
Please help me figure out why the audio will not play.
FYI, I am running OSX