我想知道是否有办法在线程中运行时动态更改传递给方法的参数。
例如:
trdColCycl thread = new Thread (() => this.ColorsCycling (true));
trdColCycl.Start();
或者
trdColCycl thread = new Thread (new ParameterizedThreadStart (this.ColorsCycling));
trdColCycl.Start(true);
然后我想将参数作为参数传递给运行该值的线程false
......有可能吗?(在此示例中,我想动态更改参数值以退出线程内的循环而不使用全局变量)
谢谢你的帮助。