如何使方法在“背景”中运行(线程化?)

时间:2011-07-16 17:46:32

标签: c# .net windows multithreading

我目前有一些代码循环查找特定短语的文本文件。但是,当此方法运行时,整个应用程序将锁定。我假设因为它是循环的,这就是我想要的。

我希望在后台发生这种情况,因此仍然可以进行常规方法和用户与应用程序的交互。

如何完成/改进?

private void CheckLog()
{   
    while (true)
    {
        // lets get a break
        Thread.Sleep(5000); 

        if (!File.Exists("Command.bat"))
        {
            continue;
        }

        using (StreamReader sr = File.OpenText("Command.bat"))
        {
            string s = "";

            while ((s = sr.ReadLine()) != null)
            {
                if (s.Contains("mp4:production/"))
                {
                    // output it
                    MessageBox.Show(s);
                }
            }
        }
    }
}

1 个答案:

答案 0 :(得分:2)

使用

class Foo {
    private Thread thread;
    private void CheckLog() {...}
    private void StartObserving() {
        thread = new Thread(this.CheckLog);
        thread.Start();
    }
}

或调色板中的backgroundworker组件。