111,086
社区成员




string filepath=Application.StartupPath+"\\gautil.exe";
string arguments="-u YourDllName";
ProcessStartInfo prsInfo=new ProcessStartInfo(filepath,arguments);
string result=Proess.Start(prsInfo).StandardOutput.ReadToEnd();
arguments="-i\""+Application.StartupPath+"\\YourDllName.dll";
prsInfo=new ProcessStartInfo(filepath,arguments);
result=result+Proess.Start(prsInfo).StandardOutput.ReadToEnd();