can we use interchangeably \"Parallel coding\" and \"Multithreading coding \" on single cpu?
i am not much experience in both, but i want to shift my coding style t
Some demos I saw in .NET 4.0, the Parallel code changes seem easier then doing threads. There is new syntax for "For Loops" and other things to support parallel processing. So there is a difference.
I think in the future you will do both, but I think the Parallel support will be better and easier. You still need threads for background operations and other things.