2007-03-11から1日間の記事一覧

C#3.0 自動プロパティ

C#

今頃、Microsoft Download Center: Windows, Office, Xbox & Moreを入れました。C#3.0には自動プロパティという機能が追加され、get、setと書くだけでプロパティが生成されます。 using System; using System.Linq; using System.Collections.Generic; using…

C#3.0 Expression Trees

C#

C#3.0では何気にExpression Treesに興味があって弄っていたのですが、「Lambda Parameter not in scope」と例外が飛びまくって悩みました。 using System; using System.Linq; using System.Linq.Expressions; using System.Collections.Generic; using Syst…