Contents tagged with C#4.0
-
Breaking Changes In Argument List Evaluation In C# 5.0
The C# Language Specification states on §7.5.1.2 that “(…) the expressions or variable references of an argument list are evaluated in order, from left to right (…)”.
-
Extension Methods And Type Inference In Action
I make extensive use of extension methods, either to make classes small and focused or to improve readability.
-
Creating Property Set Expression Trees In A Developer Friendly Way
In a previous post I showed how to create expression trees to set properties on an object.
-
LINQ: Implementing The SkipLastWhile Operator
Following my last posts (>)(>), in this post I’ll introduce the implementation of the SkipLastWhile operator.
-
LINQ: Implementing The SkipLast Operator
-
LINQ: Introducing The Skip Last Operators
-
LINQ: Implementing The TakeLastWhile Operator
Following my last posts (>)(>), in this post I’ll introduce the implementation of the TakeLastWhile operator.
-
LINQ: Implementing The TakeLast Operator
-
Hydrating Objects With Expression Trees - Part III
To finalize this series on object hydration, I’ll show some performance comparisons between the different methods of hydrating objects.
-
Hydrating Objects With Expression Trees - Part II