Csharp/CSharp Tutorial/Development/Beep — различия между версиями
Admin (обсуждение | вклад) м (1 версия) |
|
(нет различий)
|
Текущая версия на 12:14, 26 мая 2010
Play a beep with default frequency and duration (800 and 200 respectively)
using System;
using System.Windows.Forms;
using System.Media;
public class MainClass {
public static void Main() {
Console.Beep();
}
}
Play a beep with frequency as 200 and duration as 300
using System;
using System.Windows.Forms;
using System.Media;
public class MainClass {
public static void Main() {
Console.Beep(200, 300);
}
}