Blue Theme Orange Theme Green Theme Red Theme
 
Home | Forums | Videos | Photos | Downloads | Blogs | E-Books | Interviews | Jobs | Beginners | Training
 | Consulting  
Submit an Article Submit a Blog 
 Login Close
User Id:
Password:
 
Forgot Password
Forgot Username
Why Register
  This section contains
Articles (63)
Tutorials (2)
Resources (8)
Downloads (0)
 Jump to
Skip Navigation Links
TechnologyExpand Technology
WebsiteExpand Website
 Resources  
Close
 Our Network  
Close
Search :       Advanced Search »
Home »  Threading
Multi-threading in C# - Articles, Resources, Downloads, Blogs, Book Chapters, Tutorial, Source code
Welcome to Threading section of C# Corner. In this section, you will find articles, tutorials, source code samples, tips, and resources related to threading programming in C#.
Post a new article
Post a new resource
Post a new download
Post a new blog
Post a new book chapter
Post a new tutorial
This section is sponsored by
ArticlesVideosBlogsBook ChaptersDownloadsResourcesTutorials
 Articles  
Sorted by:  
BackgroundWorker and CrystalReports by hamzi khalla on Sep 18, 2009
The code snippet in this article shows how to get reports data from a database and generate reports using Crystal Reports in a background worker thread.
Asynchronous Nature of Delegates by Amr Monjid on Aug 10, 2009
In this article you will see the other face of the delegate type in C#, it will show you how you can invoke a method asynchronously using delegates.
Using the BackgroundWorker component by Amr Monjid on Apr 28, 2009
This article discusses the BackgroundWorker component in .NET 2.0, it will show you how to use it to execute tasks in the background of your application
Dealing with controls within a multi threaded context by Bechir Bejaoui on Mar 21, 2009
In this article I will provide a technique of how to avoid invalid cross threaded operation and I have taken an example of dealing with controls within a multithreaded context to demonsrate how to avoid such trouble
Multithreading in C# - A Demo by Chuck Iyer on Mar 13, 2009
This program illustrates multithreading in C# using a maximum of six elevators and a minimum of one elevator in a building that can have a maximum of eight floors and a minimum of two floors.
Multithreading with C# by Udeshika Horanagama on Feb 25, 2009
This article gives you an introduction to write multithreaded applications with c# and some basic ways for creating threads
Communicating with Serial Port in C# by Ryan Alford on Dec 09, 2008
This article shows how to communicated with Serial Port using C#.
Multithreading in C# by Bhaskar Gollapudi on Oct 01, 2008
This article discusses how to write multithreading applications in C#. Part I of this series will discuss the basics of threads in .NET.
Timer Control by Prasad on Aug 14, 2008
The sample project attached with this article shows how to use the Timer control available in .NET and C#.
Timer in C# by Mahesh Chand on Aug 14, 2008
An article with sample project explains how to work with the Timer control in C# and .NET to write to a text file after few seconds.
Background worker simplified by Daniel ' on Mar 03, 2008
This article looks at the Background Worker Technology and encapsulates it into a simple form that can be used over and over to run your background tasks.
An introduction to jibu for .net by John Dexter on Feb 25, 2008
This article gives you a complete overview about a library of .net 2.0 named jibu.
Functional Programming with C#: Advanced Asynchronous Programming by Matthew Cochran on Jan 20, 2008
I wrote about functional asynchronous programming in an earlier article and now will expand on the topic to look at ways to re-synchronize results from asynchronous function calls.
C# Asynchronous Multi-Threaded Active Directory User/Group Browser by Matthew Cochran on Oct 01, 2007
I was working on a win forms project that queries Active Directory information for user and group information and thought the approach may be of interest to some c-sharpcorner readers as a simple example of a asynchronous multi-threaded win forms application.
Multi-threaded Asynchronous Programming in C#... Through The Web Service. Part V by Matthew Cochran on Aug 30, 2007
In my last article I discussed a general approach to building an async architecture. In this article we’ll look at extending this basic architecture and incorporating async web services.
Multi-threaded Asynchronous Programming in C#... Through The Web Page. Part VI by Matthew Cochran on Jul 26, 2007
Async web pages which are primarily used as a server performance enhancement. There are two main methods we will be looking at that are used to execute operations asynchronously from web pages: Page.AddOnPreRenderCompleteAsync() and Page.AddOnPreRenderCompleteAsync().
Using the BackgroundWorker Component in .NET 2 applications by Michael Livshitz on Jul 03, 2007
In this article I will show (step-by-step) how you can use the BackgroundWorker Component in .NET 2 applications to execute time-consuming operations.
Multi-threaded Asynchronous Programming in C#... Event-Driven Architecture. Part IV. by Matthew Cochran on Jun 20, 2007
This is a continuation of a set of articles on Asynchronous multi-threaded development using C#. In this article we'll cover the basics of building an event-driven architecture which will be a basis for most multi-threaded apps. Also we'll cover async read/write operations on a file.
Multi-threaded Asynchronous Programming in C#. Async Database Calls. Part III. by Matthew Cochran on Jun 01, 2007
In my last couple articles we looked at basic ways to have long-running i/o bound process be handled by the ThreadPool using the asynchronous programming model. In this article we’ll take a look at coding async calls against SqlServer which really comes in handy in production environments where our database is on another machine.
C# Asynchronous, Multi Threaded Development... Digging In. Part II by Matthew Cochran on Jun 01, 2007
In this article we'll dig a bit deeper into what is actually happening when we use the asynchronous calls using C#. Just as in my previous article, we'll simulate a long running I/O bound process as if we were fetching records from a database, making a web service call or reading or writing from a file and see how we can write more performant code by letting the main thread continue on and not wait for the results. 
Multi-threaded Asynchronous Programming in C#... Getting started. by Matthew Cochran on May 27, 2007
Trying to build better solutions and growing as a developer has always been fun for me and I’m always looking for ways to build more scalability and robustness in the software I am writing. I had a revelation that I’ve been doing a lot of C# tweaking but not taking advantage of the core performance enhancements cooked right into C# and it all comes down to one thing: Asynchronous multi-threaded programming.
Enhanced Oracle Explorer in C# and .NET using Windows Forms by Sateesh Kumar on Apr 30, 2007
This application will allows to do multiple simple activities on oracle database like running select statements and getting selected procedure's definition simultaneously in a thread-based GUI.
Grypto-Grid Solution to digital signatures by Raghavendra Prabhu on Apr 04, 2007
This article describes as to how a Grid middleware can be easily used for a Cryptography problem.
Loading XML File in a TreeView Control using Multithreading by Manisha Mehta on Jan 31, 2007
There are many occasions when programmers need to develop multithreading applications, which can load big files in the background and let the user do data entry or other jobs without any interruption. In this article, I'll show you how to create multiple threads to load multiple files.
Thread Synchronization using VS.NET 2005 by Sonu Chauhan on Jan 30, 2007
When two or more threads need access to a shared resource, they need some way to ensure that the resource will be used by only one thread at a time. The process by which this is achieved is called synchronization.
 1 - 25 of 65 123
Looking for a book on Threading? Here is our book
Description
This book demonstrates the overwhelming majority of LINQ operators and protoypes, it is a veritable treasury of LINQ examples.
Browse more books here»

 Hosted by MaximumASP  |  Found a broken link?  |  Contact Us  |  Terms & conditions  |  Privacy Policy  |  Site Map  |  Suggest an Idea  |  Media Kit
Current Version: 5.2009.6.2
 © 1999 - 2009  Mindcracker LLC. All Rights Reserved