C# Console Beep(Int32, Int32)
Description
Console Beep(Int32, Int32)
plays the sound of a beep of
a specified frequency and duration through the console speaker.
Syntax
Console.Beep(Int32, Int32)
has the following syntax.
[HostProtectionAttribute(SecurityAction.LinkDemand, UI = true)]
public static void Beep(
int frequency,/* w w w . ja va 2 s.c om*/
int duration
)
Parameters
Console.Beep(Int32, Int32)
has the following parameters.
frequency
- The frequency of the beep, ranging from 37 to 32767 hertz.duration
- The duration of the beep measured in milliseconds.
Returns
Console.Beep(Int32, Int32)
method returns
Example
This example demonstrates the Console.Beep(Int32, Int32) method
using System;/*from w ww. jav a 2 s .c o m*/
class Sample
{
public static void Main()
{
Console.Beep(100, 10);
}
}