How to utilize my computation resources.
- by carter-boater
Hi all,
I wrote a program to solve a complicated problem. This program is just a c# console application and doesn't do console.write until the computation part is finished, so output won't affect the performance.
The program is like this:
static void Main(string[] args)
{
Thread WorkerThread = new Thread(new ThreadStart(Run),…