https://www.developerfusion.com/t/concurrency/tutorials/Concurrency Tutorials & Articles from Developer Fusion2012-02-10T02:15:00.00Zhttp://www.developerfusion.com/article/138018/memory-ordering-for-atomic-operations-in-c0x/Memory Ordering for Atomic Operations in C++0x2012-02-10T02:15:00.00ZThe 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 Maharryhttp://www.developerfusion.com/article/84418/concurrency-handling-techniques-in-adonet/Concurrency handling techniques in ADO.NET2010-09-23T10:54:00.00ZJoydip Kanjilal looks at the problems caused by concurrency when accessing data, both online and offline, and how to overcome them.Joydip Kanjilalhttp://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.00ZAn extensive examination of OO programming in C#, covering inheritance, constructors, interfaces, virtual and static methods, and much more.Jeff Louiehttp://www.developerfusion.com/article/3801/web-forms-datagrid-and-dataset-programming/Web Forms DataGrid and DataSet Programming2003-06-27T09:39:00.00ZThis 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