C# SES EKLEME
//NOT wav dosyası olmalı
using System.Media; //ekle
openFileDialog1.ShowDialog();
string url = openFileDialog1.FileName.ToString();
SoundPlayer ses = new
SoundPlayer();
ses.SoundLocation = url;
ses.Play();
ses.stop();