c# methode im anderen Thread code example
Example: c# methode im anderen Thrad
using System;
using System.Threading;
Thread thread = new Thread(new ThreadStart(myMethod));
// Start the thread.
thread.Start();
using System;
using System.Threading;
Thread thread = new Thread(new ThreadStart(myMethod));
// Start the thread.
thread.Start();