beep sound in csharp

Code Example - beep sound in csharp

                
                        //Regular Beep
Console.Beep();
//setting the sound of the beep
Console.Beep(800,500)
                    
                
 

csharp console beep sounds

                        
                                Console.Beep();         //Just a Beep
            Console.Beep(440, 500); //A NOTE, 0.5 sec duration
                            
                        
 

Related code examples