1.调用外部程序
Process outProcess = new Process(); //初始化
outProcess.StartInfo.FileName = @"E:\winformSkin.zip"; //Filename为文件名 可以是exe/dll/各种
outProcess.Start();
2.多线程
Thread threadClient = new Thread(Recive);
threadClient.IsBackground = true; //设置为后台线程
threadClient.Start(); //启动线程