public static void NewThread1(Generator_komunikatów_dworcowych.komunikaty current, string NazwaGongu) { Thread test1 = new Thread(() => Gadanie.SyntezatorBezPostoju(current, NazwaGongu)); test1.Start(); }
public static void NewThread2(Generator_komunikatów_dworcowych.komunikaty current, string NazwaGongu) { Thread test2 = new Thread(() => Gadanie.TestowyDzwiekGongu(current, NazwaGongu)); test2.Start(); }
public static void NewThread(string początek, string relacja, string torIPeron, string godziny, Generator_komunikatów_dworcowych.komunikaty current, bool ifLate, string NazwaGongu, string rezerwacja) { Thread test = new Thread(() => Gadanie.Syntezator(początek, relacja, torIPeron, godziny, current, ifLate, NazwaGongu, rezerwacja)); test.Start(); }