1

我尝试在不同的线程中执行我的操作,但我想等到我的 Tread 完成后再打开新线程:

public class Play
{
    private string _filePath;
    private int _deviceNumber;

    public Play(string filePath, int deviceNumber)
    {
        _filePath = filePath;
        _deviceNumber = deviceNumber;
    }

    public void start()
    {
        Thread thread = new Thread(send);
        thread.IsBackground = true;
        thread.Start();
    }

    private void send()
    {
        ProcessStartInfo processStartInfo = new ProcessStartInfo(@"D:\SendQueue\SendQueue\bin\Debug\Send.exe");
        processStartInfo.Arguments = string.Format("{0} {2}{1}{2}", (_deviceNumber).ToString(), _filePath, "\"");
        processStartInfo.WindowStyle = ProcessWindowStyle.Hidden;
        processStartInfo.RedirectStandardOutput = true;
        processStartInfo.RedirectStandardError = true;
        processStartInfo.CreateNoWindow = true;
        processStartInfo.UseShellExecute = false;
        processStartInfo.ErrorDialog = false;

        using (Process process = Process.Start(processStartInfo))
        {
            process.WaitForExit();
        }
    }
}

从开始按钮单击我正在播放列表框中的所有文件:

for (int i = 0; i < ListBox.Items.Count && shouldContinue; i++)
{
    PlayFile play = new PlayFile ((string)ListBox.Items[i], add);
    playCapture.start();
}
4

1 回答 1

0
    Task taskA = Task.Factory.StartNew(() => send());
    taskA.Wait();

但这会阻塞任务的调用者线程(工作将在第二个线程中完成,但实际上,调用者线程将在执行期间被阻塞)你不会从另一个线程中的工作中受益!

这个链接可以帮助你

如果您需要在另一个线程中完成所有工作,并保持主流畅通无阻,您可以将您的for语句放在一个线程中,这将完美运行。

于 2012-12-30T11:58:23.060 回答