By tag: threading
0
kicks
Wicked Code: Asynchronous Pages in ASP.NET 2.0
Comprehensive interesting article about going asynchronous with ASP.NET Web Forms from Jeff Prosise.
0
kicks
Asyncify Your Code
Asyncify your code. Everybody's doing it. (Chicks|Dudes)'ll dig it. It'll make you cool. An opinion on .NET asynchronous patterns, a sample application exposing its own asynchronous API, and why you should be writing asynchronous code.
0
kicks
Free ebook : Threading in C#
It has been updated since the last time it was posted here. Available in HTML and PDF.
0
kicks
C# Threads using anonymous methods
Short "how to" talks about anonymous methods in c# to simplify a thread creation.
0
kicks
What's wrong with this code? #1 - Discussion
Discussion over the thread-safe singleton snippet presented in "What's wrong with this code? #1"
0
kicks
Anonymous Methods vs Threads
What happens when you combine anonymous methods and threads - a things you need to be aware or you will encounter a strange behavior that will be hard to explain.
0
kicks
Working With Asynchronous WebRequests
Do you knowh how to handle multiple asynchronous WebRequests? Do you know why the obvious way doesn't work?
0
kicks
.NET BackgroundWorker Mysteries Solved
I'm coding a multi-tier VB.NET winforms application, and decided to take advantage of the BackgroundWorker object from the System.ComponentModel namespace for any cases where code in one of my forms is calling down to methods in one of the application's DLLs. For those not familiar, the BackgroundWo...
0
kicks
Pattern for Properly Updating a Control from Another Thread
This article demonstrates how a simple property on a Form can handle thread safe communication with Controls on a Form.
0
kicks
Threading in C# - Free E-book
Very, very (an I mean it) good tutorial/ebook on C# threads and everything related to it - like syncronisation, interlock, atmoic operations, semaphors, etc....
0
kicks
Understanding .NET Interlocked class
Explanation about .NET Interlocked class and why it is just more than atomicity.
0
kicks
'System.Threading.Thread.Suspend()' is obsolete: 'Thread.Suspend has b
How to properly implement a Thread that supports Suspend and Resume.
0
kicks
All about threading in .NET | Sahil Malik - blah.winsmarts
Title says it all...
Be sure to read the 2nd part of the article too... covers Waiting for Threads.
0
kicks
Free eBook : Threading in C#
Here is a nicely writtern eBook on threading in .NET 2.0. It also has some great examples.