能力值:
( LV2,RANK:150 )
|
-
-
2 楼
private void button3_Click(object sender, EventArgs e)
{
if (openFileDialog1.ShowDialog() != DialogResult.OK) return;
if (String.IsNullOrEmpty(openFileDialog1.FileName)) return;
String file = openFileDialog1.FileName;
try
{
if (IDCFunction.DoSysFile(file))
MessageBox.Show("执行成功!");
else
MessageBox.Show("执行失败!");
}
catch (Exception ex)
{
MessageBox.Show("执行失败!" + ex.Message);
}
}
IDACSharp中已经公开了IDCFunction.DoSysFile方法,用于编译并执行idc文件中的main方法。
上面是一段C#调用的例子。
|
|
|