Functional Programming in C#

Introduction of functional concepts by using C#

Keywords

  • First class citizen
  • Anonymous functions = lambda
  • Closure
  • Higher order functions
  • Recursion
  • Fold or handmade LINQ
  • Composition
  • Partial application / Currying
  • Pure

Theory





What is a function?

f: X -> Y
    x -> y


Definition on Wikipedia

C#

  • Func<...> and Action<...>
  • Anonymous functions
  • Extension functions from System.Linq

Links

Code > 






Contact

E-Mail > max@malook.de

Twitter > @max_malook

G plus > +Max Malook

Functional Programming in C#

By Max Malook

Functional Programming in C#

Introduction to the concepts of functional programming by using C#

  • 1,612