how to send arguments to new thread method C# code example
Example: pass parameter to thread c#
Thread thread = new Thread(() => download(filename));
thread.Start();
Thread thread = new Thread(() => download(filename));
thread.Start();