Saturday, May 30, 2009

Beep

// Beep

[DllImport("kernel32.dll")]
public static extern bool Beep(int freq, int duration);

static void Main(string[] args)
{
Beep(1000, 50);
}

No comments:

Post a Comment