I am building a C# Desktop application. How do I call a method that takes multiple parameters in a thread. I have a method called Send(string arg1, string arg2, string arg3) , I
Thread thread = new Thread(() => Send(arg1, arg2, arg3)); thread.Start();