how to pass and objest as a parameter for a thread function code example
Example: pass parameter to thread c#
Thread thread = new Thread(() => download(filename));
thread.Start();
Thread thread = new Thread(() => download(filename));
thread.Start();