谁帮分析下代码
static void Main(String[] args){
new GCBeep();
int i=0;
while(i++<10000)
{
Console.WriteLine(i);
byte[] b =new byte[100];
}
}
public class GCBeep
{
~GCBeep()
{
Beep(800,300)
new GCBeep();
}
[System.Runtime.InTeropServuces.DllImport
("kerne132.dll")]
private extern static bool Beep(int freq,int
duration);
}
谁帮分析下最后2句代码是什么意思?谢谢了