主题:请问在c#中使用WshShell.Run这个方法的第三个参数应该怎样定义出来?
WshShell shell = new WshShell();
Object normalWindow = IWshRuntimeLibrary.WshWindowStyle.WshNormalFocus;
FileSystemObject fso = new FileSystemObject();
TextStream txtFile = fso.CreateTextFile("get.bat", true, false);
shell.Run("get.bat", ref normalWindow, 此处应为 ref object WaitOnReturn);
问题就出在这第三个参数上,我在IWshRuntimeLibrary中找不到可以定义成 WaitOnReturn 的参数,请问有人知道这个参数应该怎么定义吗?不胜感激。
Object normalWindow = IWshRuntimeLibrary.WshWindowStyle.WshNormalFocus;
FileSystemObject fso = new FileSystemObject();
TextStream txtFile = fso.CreateTextFile("get.bat", true, false);
shell.Run("get.bat", ref normalWindow, 此处应为 ref object WaitOnReturn);
问题就出在这第三个参数上,我在IWshRuntimeLibrary中找不到可以定义成 WaitOnReturn 的参数,请问有人知道这个参数应该怎么定义吗?不胜感激。