I am new to .Net platform. I did a search and found that there are several ways to do parallel computing in .Net:
Parallel task in Task Parallel Library, which
You do need to do a fair amount of research in order to determine how to effectively multithread. There are some good technical articles, part of the Microsoft Parallel Computing team's site.
Off the top of my head, there are several ways to go about multithreading:
Thread
class.ThreadPool
, which also has support for I/O-bound operations and an I/O completion port.Begin*
/End*
asynchronous operations.SynchronizationContext
.BackgroundWorker
, which is an EBAP that defines an asynchronous operation.Task
class (Task Parallel Library) in .NET 4.Update: There is an article Understanding and Applying Parallel Patterns with the .NET Framework 4 available for download that gives some direction on which solutions to use for which kinds of parallel scenarios (though it assumes .NET 4 and doesn't cover Rx).