Hi, I am sorry for the title but I really do not know how to better describe it. I am using threadpool for processing incoming data on the server side and in one method I would need to call static method asynchronously but I am not sure how to do that.
When server receives the data from client, it uses threadpool:
System.Threading.ThreadPool.QueueUserWorkItem(c.ReadData);
In the c.ReadData I would need to call static method which result is not important (sends some data to website) and I dont need to know it. I am just not sure what is the best solution here. Thank you!