Stories recently tagged with 'threading'

Free ebook : Threading in C#(albahari.com)

submitted by gavinjoycegavinjoyce(25.7k) 4 years, 8 months ago

It has been updated since the last time it was posted here. Available in HTML and PDF. read more...

2 comments |category: |Views: 137

tags: another

C# Threads using anonymous methods(coders4fun.com)

submitted by inandreainandrea(115) 4 years, 8 months ago

Short "how to" talks about anonymous methods in c# to simplify a thread creation. read more...

add a comment |category: |Views: 54

tags: another

What's wrong with this code? #1 - Discussion(ekampf.com)

submitted by ekampfekampf(3195) 4 years, 10 months ago

Discussion over the thread-safe singleton snippet presented in "What's wrong with this code? #1" read more...

add a comment |category: |Views: 1

tags: another

Anonymous Methods vs Threads(vaultofthoughts.net)

submitted by mikeonmikeon(5200) 4 years, 11 months ago

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. read more...

add a comment |category: |Views: 14

tags: another

Anonymous Methods vs Threads(vaultofthoughts.net)

submitted by mikeonmikeon(5200) 4 years, 11 months ago

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. read more...

add a comment |category: |Views: 14

tags: another

Working With Asynchronous WebRequests(vaultofthoughts.net)

submitted by mikeonmikeon(5200) 4 years, 11 months ago

Do you knowh how to handle multiple asynchronous WebRequests? Do you know why the obvious way doesn't work? read more...

add a comment |category: |Views: 23

tags: another

.NET BackgroundWorker Mysteries Solved(developerdotstar.com)

submitted by clubberclubber(70) 5 years, 2 months ago

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 BackgroundWorker is a simplified wrapper for situations where you want to implement multi-threading for your GUI-centric application without messing around with the thread plumbing yourself. read more...

add a comment |category: |Views: 40

tags: another

Pattern for Properly Updating a Control from Another Thread(choosing-a-blog-url-sucks.blogspot.com)

submitted by j.montyj.monty(1868) 5 years, 2 months ago

This article demonstrates how a simple property on a Form can handle thread safe communication with Controls on a Form. read more...

add a comment |category: |Views: 21

tags: another

Threading in C# - Free E-book(albahari.com)

submitted by jasper22jasper22(1320) 5 years, 2 months ago

Very, very (an I mean it) good tutorial/ebook on C# threads and everything related to it - like syncronisation, interlock, atmoic operations, semaphors, etc.... read more...

add a comment |category: |Views: 34

tags: another

Understanding .NET Interlocked class(thith.blogspot.com)

submitted by thiththith(65) 5 years, 6 months ago

Explanation about .NET Interlocked class and why it is just more than atomicity. read more...

add a comment |category: |Views: 516

tags: another

'System.Threading.Thread.Suspend()' is obsolete: 'Thread.Suspend has b(msmvps.com)

submitted by ephemeronephemeron(35) 5 years, 6 months ago

How to properly implement a Thread that supports Suspend and Resume. read more...

add a comment |category: |Views: 196

tags: another

All about threading in .NET | Sahil Malik - blah.winsmarts(blah.winsmarts.com)

submitted by edburdoedburdo(1350) 5 years, 7 months ago

Title says it all... Be sure to read the 2nd part of the article too... covers Waiting for Threads. read more...

add a comment |category: |Views: 8

tags: another

Free eBook : Threading in C#(albahari.com)

submitted by gavinjoycegavinjoyce(25.7k) 5 years, 7 months ago

Here is a nicely writtern eBook on threading in .NET 2.0. It also has some great examples. read more...

add a comment |category: |Views: 50

tags: another

Is The Null Coalescing Operator Thread Safe?(haacked.com)

submitted by HaackedHaacked(5105) 5 years, 9 months ago

Digs into the new C# 2.0 null coalescing operator and whether or not it is thread safe. read more...

add a comment |category: |Views: 11

tags: another

Threading - Never Lock This Redux(haacked.com)

submitted by jimholmesjimholmes(215) 5 years, 9 months ago

Why locking on "this" can be a bad idea -- and how to lock in a safer manner. read more...

add a comment |category: |Views: 4

tags: another