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);
}
}
|
HTML code for linking to this page:
Related in same category :
-
|