C# executable on a multi processor machine

  • Thread starter Thread starter booksnore
  • Start date Start date
B

booksnore

Hi,
I have a console application in C# which I run as an exe. The server on
which the application runs has four processors but the application only
uses one processor. Is there any way I can get the application to use
all four processors?

Joe
 
booksnore said:
Hi,
I have a console application in C# which I run as an exe. The server on
which the application runs has four processors but the application only
uses one processor. Is there any way I can get the application to use
all four processors?

Joe

I can assume that you should use multiple threads in your app if you
want to take advantage of a multiprocessor system

MuZZy
 
Back
Top