An unhandled exception of type 'System.ComponentModel.Win32Exception'
[[MORE]]
我改用這樣的方法來寫就解決了,這個例子是連線網路磁碟機的作法(請注意其中的斜線):
using System;
using System.Diagnostics;
namespace DefaultNamespace
{
class MainClass
{
public static void Main(string[] args)
{
ProcessStartInfo pc=new ProcessStartInfo();
pc.FileName = "net";
pc.Arguments = "use m: \some_pc\share";
System.Diagnostics.Process.Start(pc);
}
}
}
沒有留言:
張貼留言