using System.Media; // gõ thêm vào dòng // chạy file wav public static void PlayMusic(string filename) { SoundPlayer sound = new SoundPlayer(filename); sound.LoadAsync(); sound.Play(); }