Contents tagged with C#
-
C# vNext language design - private protected - FamilyAndAssembly
C# vNext will have a new accessibility modifier. The C# team had first proposed to use "private protected", but maybe someone can find a better syntax for it.
-
What’s New In C# 5.0 Session Materials From Rumos InsideOut Event
Here are the materials from my What’s New In C# 5.0 session at the Rumos InsideOut Event.
-
C# 5.0 Async/Await Demo Code
I’ve published the sample code I use to demonstrate the use of async/await in C# 5.0. You can find it here.
-
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 (…)”.
-
Announcing The Microsoft Roslyn CTP
The Roslyn team has announced general availability of the Roslyn CTP!
-
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.