https://www.developerfusion.com/t/concurrency/tutorials/ Concurrency Tutorials & Articles from Developer Fusion 2012-02-10T02:15:00.00Z http://www.developerfusion.com/article/138018/memory-ordering-for-atomic-operations-in-c0x/ Memory Ordering for Atomic Operations in C++0x 2012-02-10T02:15:00.00Z The operation that writes a value happens before an operation that reads that value. With the default atomic operations that’s indeed true (which is why this is the default), but it does need spelling out: the atomic operations also have other options for the ordering requirements. In this article, based on chapter 5 of C++ Concurrency in Action, author Anthony Williams discusses the memory-ordering tags used for atomic operations and how they relate to the synchronizes-with relation. Dan Maharry http://www.developerfusion.com/article/84418/concurrency-handling-techniques-in-adonet/ Concurrency handling techniques in ADO.NET 2010-09-23T10:54:00.00Z Joydip Kanjilal looks at the problems caused by concurrency when accessing data, both online and offline, and how to overcome them. Joydip Kanjilal http://www.developerfusion.com/article/3821/a-twisted-look-at-object-oriented-programming-in-c/ A Twisted Look at Object Oriented Programming in C# 2003-07-05T17:43:00.00Z An extensive examination of OO programming in C#, covering inheritance, constructors, interfaces, virtual and static methods, and much more. Jeff Louie http://www.developerfusion.com/article/3801/web-forms-datagrid-and-dataset-programming/ Web Forms DataGrid and DataSet Programming 2003-06-27T09:39:00.00Z This is a working C# .NET program that demonstrates how to integrate most of the features of the DataGrid and DataSet in a single project including select, insert, update, delete, confirm delete, sort, filter and page. Jeff Louie