Welcome to SpellCoder
Sign in
|
Join
|
Help
Lazy Coder
RSS 2.0
Atom 1.0
Home
About
<
August 2008
>
Su
Mo
Tu
We
Th
Fr
Sa
27
28
29
30
31
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
1
2
3
4
5
6
Search
Go
Archives
April 2008 (1)
February 2008 (2)
January 2008 (3)
December 2007 (3)
November 2007 (3)
October 2007 (4)
September 2007 (1)
August 2007 (5)
July 2007 (5)
June 2007 (6)
May 2007 (8)
April 2007 (6)
March 2007 (8)
February 2007 (1)
January 2007 (10)
December 2006 (12)
November 2006 (9)
October 2006 (6)
September 2006 (20)
August 2006 (20)
July 2006 (10)
June 2006 (7)
May 2006 (19)
Post Categories
ASP.Net 2.0 (6)
Atlas (3)
C# 3.0 (4)
Code Design (7)
General (19)
Havana (2)
LISP (3)
Programmable Web (13)
Robotics (3)
Ruby (3)
Utilities (5)
Stuff
SilverKey
nomadlife.org
C# 3.0
(RSS)
C# 3.0 Automatic Properties is a hack
ScottGu just made a post about the "automatic properties" on how it cut down on the clutter of defining the private field behind the property. This feature is a hack and should be ignored. The problem here are twofolds: You can only have one type of
Read More
posted
Friday, March 09, 2007 5:00 AM
by
dodyg
|
0 Comments
Filed Under:
C# 3.0
Visual Studio Orcas notes
1. You can install it side by side with Visual Studio 2005 without problems. 2. It has proper uninstall support so you can uninstall it next February when the new CTP hits the wire. 3. It adds .Net framework 2 SP 1. 4. There is a bug in the IDE
Read More
posted
Saturday, January 27, 2007 5:21 AM
by
dodyg
|
0 Comments
Filed Under:
C# 3.0
Query Composition using FP techniques in C# 3.0
This is a tutorial on using Functional Programming (FP) techniques for constructing LINQ queries. It is certainly possible to write simple LINQ queries without using these techniques, but as soon as you start writing more complicated queries,
Read More
posted
Thursday, January 11, 2007 3:39 PM
by
dodyg
|
0 Comments
Filed Under:
C# 3.0
Welcome to the Age of Expression
"Expression<Func<int, int>> expr = a => a + 3;Console.WriteLine(expr); // prints "a => Add(a, 3)"Func<int, int> func = expr.Compile(); // LCG's an MSIL method from the exprConsole.WriteLine(func(4)); // prints "7"" (Don Box)You
Read More
posted
Friday, May 12, 2006 5:51 PM
by
dodyg
|
0 Comments
Filed Under:
LISP
,
C# 3.0