how to play mp3 file in c#
The text of this thread is not in this database — only its details are. Read it on the old site: how to play mp3 file in c#
The text of this thread is not in this database — only its details are. Read it on the old site: how to play mp3 file in c#
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Marvin kakuruPosted Feb 27, 2013, 3:08 AM
using System.Media;
public partial class finite : Form
{
public System.Windows.Forms.Button button1;
public finite(){
InitializeComponent();
}
SoundPlayer My_JukeBox = newSoundPlayer(@"C:\Users\katoto\Philcollins\true colours.mp3");
public void btstart_Click(object sender, EventArgs e)
{
My_JukeBox.Play();
{