无法在程序集中找到System.Media

时间:2018-05-11 16:51:20

标签: c# .net assemblies

我目前正在为C#中的音乐播放器开发一个需要使用System.Media的项目。我已经尝试在我的程序集中添加它,但System.Media无处可寻。

using System;
using System.Media; //gives an error and suggests to add a reference/assembly

namespace ConsoleMusic
{
    class Program
    {
        static void Main(string[] args)
        {
            SoundPlayer player = new SoundPlayer();
            player.SoundLocation = AppDomain.CurrentDomain.BaseDirectory + "\\Cream Crossroads.mp3";
            player.Play();

            Console.Read();
        }
    }
}

Picture of available assemblies

0 个答案:

没有答案