background preloader

C#

Facebook Twitter

Using LINQ Queries. Table of contents Introduction Language INtegrated Queries are SQL-like C# queries that can be used to manipulate collections of objects.

Using LINQ Queries

In this article, I will show some cases of usage that show how LINQ can be used to query collections of objects. The goal of this article is to be a beginners guide for LINQ, and a reference/reminder for others. Back to Basics: Moving beyond for, if and switch. TestDriven.Net > Home. Multi core programming using Task Parallel Library with .NET 4.0. Introduction Nowadays, all personalcomputer and workstations come with multiple cores. Most .NET applications failto harness the full potential of this computing power. Even when developers attempt to do so, it isgenerally be means of writing low level manipulation of threads and locks. Thisoften leads to a situation, where the code becomes either un-readable or fullof potential threats.