Understanding C# Features (5) Lambda Expression, Anonymous Function and Expression Tree
2009-11-29
C# lambda expression is a syntax to create delegates or expression trees.
4043 words
|
20 minutes
Understanding C# Features (4) Extension Method
2009-11-28
Extension method is a powerful syntactic sugar in C# 3.0+, which enables fluent LINQ query.
722 words
|
4 minutes
Understanding C# 3.0 Features (4) Anonymous Type
2009-11-27
This feature provides a way to create an instance without declare the type.
467 words
|
2 minutes
Understanding C# Features (1) Auto Property
2009-11-26
As the fundamental of LINQ, This chapter will explain the new language features of C# 3.0, all of which are syntactic sugars.
571 words
|
3 minutes
Understanding C# Features (2) Object Initializer, Collection Initializer and Index Initializer
2009-11-26
Object Initializer, Collection Initializer and Index Initializer are very handy syntactic sugars for declarative C#.
284 words
|
1 minute
Understanding C# Features (3) Implicit Type and Immutable Anonymous Type
2009-11-26
The var keyword is introduced since C# 3.0. Consider the local variable declaration and initialization
669 words
|
3 minutes
Introducing LINQ (2) Advancements Overview
2009-11-24
LINQ is one of Microsoft’s most exciting, powerful new development technologies.
317 words
|
2 minutes
Mac OSX Turns Dual Core Laptop into Solo Core
2009-11-11
This is blogged because it is surprising. Some months ago my friend and me were investigating Mac OSX for my , so we installed the latest version on a machine, [SAMSUN
89 words
|
1 minute
The Funny Enum.ToString(IFormatProvider) Method
2009-10-17
Here is a ToString(IFormatProvider) method on the System.Enum type. It looks a IformatProvider (like CultureInfo) can be passed to this method:
156 words
|
1 minute