在灵药中,有没有办法监督现有流程? 像
IEnumerable<MyNewClass> filterResult = itemList
.Where(s => nameFilterTextBox.Text == "" || s.name == nameFilterTextBox.Text)
.Where(s => descriptionFilterTextBox.Text == "" || s.description == descriptionFilterTextBox.Text)
.Where(s => comboBox1.SelectedIndex == -1 || s.color == (MyNewClass.Colors)comboBox1.SelectedIndex).ToList();
答案 0 :(得分:3)
话虽如此 - 你可以monitor一个过程,并在你收到死亡信号时做任何你想做的事。