System.Console.Beep C# (CSharp) Method

Beep() public static method

public static Beep ( ) : void
return void
        public static void Beep() { }
        public static void Beep(int frequency, int duration) { }

Same methods

Console::Beep ( int frequency, int duration ) : void

Usage Example

Example #1
0
 public static void Beep()
 {
     Console.Beep();
     AssertUserExpectedResults("hear a beep");
 }
All Usage Examples Of System.Console::Beep