/// <summary> /// Тест!!! /// </summary> public void Test() { foreach (IAlgorithm alg in algorithms) { CalculatingThread th = new CalculatingThread(alg, tasks, function); thListener = new Listener(listener); th.SetEndListener(thListener); th.Start(); } }
/// <summary> /// Тест!!! /// </summary> public void Test() { foreach(IAlgorithm alg in algorithms) { CalculatingThread th = new CalculatingThread(alg,tasks,function); thListener = new Listener(listener); th.SetEndListener(thListener); th.Start(); } }