using System.Runtime.InteropServices;
引用命名空间
[DllImport("kernel32.dll")]
public static extern bool Beep(int frequency, int duration);
调用系统dll
Beep(0X0FF,100);
oxxff 表示声音 类型 二进制 自己可以改变
100 声音响的时长......
using System.Runtime.InteropServices;
引用命名空间
[DllImport("kernel32.dll")]
public static extern bool Beep(int frequency, int duration);
调用系统dll
Beep(0X0FF,100);
oxxff 表示声音 类型 二进制 自己可以改变
100 声音响的时长......