June 2010 - Posts

4
Comments

Parallel LINQ - PLINQ by nmarun

Turns out now with .net 4.0 we can run a query like a multi-threaded application. Say you want to query a collection of objects and return only those that meet certain conditions. Until now, we basically had one ‘control’ that iterated over all the objects...
Filed under: ,
5
Comments

readonly keyword by nmarun

This is something new that I learned about the readonly keyword. Have a look at the following class: 1: public class MyClass 2: { 3: public string Name { get; set; } 4: public int Age { get; set; } 5:   6: private readonly double Delta; 7:  ...
Filed under: ,
More Posts