csharp play mp3 file

Code Example - csharp play mp3 file

                
                        What to do for the music player format m3
                    
                
 

csharp play wav file

                        
                                var soundPlayer = new System.Media.SoundPlayer();
soundPlayer.SoundLocation = @"C:\ProjectFolder\song.wav";
soundPlayer.PlayLooping();
                            
                        
 

Related code examples