| A .NET Progress Dialog |
| The Code Project |
| There are many processing operations that will take more than 1/10th of a second to complete, even on today's processors! To avoid tying up the user interface, a common approach is to spawn a new thread and do the work there, whilst sending updates back to a suitable indicator on the UI thread. This is one such indicator, implemented in C# using the .NET framework.
|
|
| A Multi-threaded search engine in C# |
| C#Today |
| A lot of applications require some sort of search. Sometimes, the information we are looking for is in many different locations. Most of the time, even when the resources are independently and physically separated from each other, we still have to perform the searches one by one in the order in which they are defined in the code. In this article, Tin Lam looks at the simple but sophisticated multithreading model provided by the System.Threading namespace in the .NET Framework, with which we can simply create a thread for each search, start them all at the same time, then have them run in parallel. When the searches are done, we can process their results as each of them return. |
|
| ASP.NET Performance Tips and Best Practices |
| GotDotNet |
| ASP.NET provides a flexible framework for running .NET Web Applications. As such, there are some practical tips and best practices that developers should take into account to obtain good performance from their web sites. |
|
| Inter-Process Communication in .NET Using Named Pipes, Part 2 |
| The Code Project |
| This article explores a way of implementing Named Pipes based Inter-Process Communication between .NET applications |
|
| Introduction to Threads in C# |
| The Code Project |
| A Beginers introduction to Threads using C# |
|
| Multithreaded Programming using C# |
| The Code Project |
| Threading is a lightweight process. With the help of threads we can increase the response time of the application. To use multithreading we have to use the Threading namespace which is included in System. The System.Threading namespace includes everything we need for multi threading. Now lets see the first program. |
|
| Thread Concepts and its implementation in .NET Framework |
| C# Help |
| One or more threads run in an AppDomain. An AppDomain is a runtime representation of a logical process within a physical process. A thread is the basic unit to which the operating system allocates processor time. Each AppDomain is started with a single thread, but can create additional threads from any of its threads. |
|
| Threading in .NET Part 2 |
| DotNetJunkies |
| In Threading Part 2, Ben goes further into Threads illustrating how to suspend, terminate, abort, and check the status of threads. He also goes into what the difference between background and foreground threads are. |
|