Episode 23: Functional Programming in C# with Oliver Sturm
סדרה בארכיון ("עדכון לא פעיל" status)
When? This feed was archived on April 17, 2016 14:04 (). Last successful fetch was on March 15, 2016 16:26 ()
Why? עדכון לא פעיל status. השרתים שלנו לא הצליחו לאחזר פודקאסט חוקי לזמן ממושך.
What now? You might be able to find a more up-to-date version using the search function. This series will no longer be checked for updates. If you believe this to be in error, please check if the publisher's feed link below is valid and contact support to request the feed be restored or if you have any other concerns about this.
Manage episode 56653667 series 2493
During PDC 2008, Oliver Sturm joined Keith and Woody to talk about his new book Functional Programming in C# (due in 2009) and discussed how all C# developers have the power of functional programming at their fingertips today. The discussion went so deep there is a code example in the post to illustrate the concepts Oliver discussed.
Thanks to our guest this episode
Oliver Sturm is an experienced software architect, developer, trainer and author, and a language freak. He also thinks he's a nice guy, but he's prepared to accept other opinions on that. He is a C# MVP and he works for Developer Express as a Technical Evangelist and Lead Program Manager for the Frameworks Division. Oliver’s blog is http://www.sturmnet.org/blog |
Code from the interview
Func add = (x,y) => x + y; Func> addC2 = delegate(int x) { return delegate (int y) { return x + y; } }; Func> addC = x => y => x + y; var add5 = addC(5); add5(37); Show Notes
97 פרקים