System.Console.Beep C# (CSharp) Méthode

Beep() public static méthode

public static Beep ( ) : void
Résultat void
        public static void Beep() { }
        public static void Beep(int frequency, int duration) { }

Same methods

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

Usage Example

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