Does anyone know how to pass multiple parameters into a Thread.Start routine?
I thought of extending the class, but the C# Thread class is sealed.
Here is wh
.NET 2 conversion of JaredPar answer
Thread standardTCPServerThread = new Thread(delegate (object unused) { startSocketServerAsThread(initializeMemberBalance, arg, 60000); });