Duplicate of
Can any body provide some good examples, codes for multi threading in c#.. I tried on google but I need examples with good explanation about what is happening at what point?
Duplicate of
Can any body provide some good examples, codes for multi threading in c#.. I tried on google but I need examples with good explanation about what is happening at what point?
This question has been answered already here and here and here among places, and I'm sure there are many more on this site alone. Those are from the first page of results using the search feature in your top right corner.
You can't go wrong with Joe Albahari's free online resource Threading in C#
Exactly what sort of application did you have in mind? Multithreading is built in to .NET, and is present in many forms. In the simplest case, look on http://msdn.microsoft.com for the System.Threading.Thread class. There's also built-in asynchronous I/O.