multi-threading

    Multithreading is a vast subject. This article aims to cover only some basics on multithreading. It also gives a small sample code to write a Multi threaded program in Win32. Multithreading is nothing but executing operations parallel. A multi-threaded operation will usually be embedded …

Introduction This article is about muilti – threading concept in .NET explained using C# as programming language. Multi threading is an important aspect that needs a special attention while building very huge system, especially when there is a trade off between efficiency (how fast the …

The Thread Class: Once you’ve decided what work needs to be done in a separate thread by your application, you need to create an object of the Thread class. The Thread class is used for creating threads, controlling them, and for terminating them. I’ll show …