.NET Application without UI
时间:2014-05-07 10:56:39
收藏:0
阅读:348
private void MainForm_Load(object
sender, EventArgs e)
{
BeginInvoke(new MethodInvoker(delegate { Hide();
}));
DoJob();
Process.GetCurrentProcess().Kill();
}
private void
DoJob()
{
try
{
}
catch {
}
}
评论(0)