Skip to content

Instantly share code, notes, and snippets.

@hatelove
Created April 19, 2012 04:19
Show Gist options
  • Save hatelove/2418546 to your computer and use it in GitHub Desktop.
Save hatelove/2418546 to your computer and use it in GitHub Desktop.
-var 隱含型別
-匿名型別
-extension method
-yield return
-Enumerable<T>
-IEnumerable<T>
-Fluent Interface
-介面的方法會回傳自己這個介面,達到method chaining
-lambda
-匿名方法
-特殊型別
-Func<T1,T2,...., TResult>
-Action<T1, T2....,Tn>
-Predicate<T> 委派...
- from x in xCollection
where f(x)
select x
-foreach+condition delegate function+result delegate function+yield return
-延遲執行
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment