System.Console.Beep C# (CSharp) Method

Beep() public static method

public static Beep ( int frequency, int duration ) : void
frequency int
duration int
return void
        public static void Beep(int frequency, int duration) { }
        public static int BufferHeight { get { throw null; } set { } }

Same methods

Console::Beep ( ) : void

Usage Example

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