Stories recently tagged with 'Lambda'

Introducing C# 3 – Part 2(programmersheaven.com)

submitted by pheavenpheaven(430) 4 years, 5 months ago

This is the second of a four part series on C# 3.0. It covers extension methods, explaining what they are, when to use them and how to write them. It then moves on to lambda expressions, explaining the syntax and showing how C# 2.0 anonymous methods can be re-written using the new syntax. It also looks at how type inference and lambda expressions work together. read more...

add a comment |category: |Views: 12

tags: another

Lambdas and Closures and Currying. Oh my! (Part 2)(codethinked.com)

submitted by justin_etheredgejustin_etheredge(8539) 4 years, 6 months ago

In this installment, we delve deep into the syntax of lambdas in C# 3.0 and how exactly you would use them. read more...

1 comment |category: |Views: 13

tags: another

Lambdas and Closures and Currying. Oh my! (Part 1)(codethinked.com)

submitted by justin_etheredgejustin_etheredge(8539) 4 years, 6 months ago

Part 1 of an n part article on functional programming in C# 3.0, from the viewpoint of a functional programming novice! read more...

2 comments |category: |Views: 15

tags: another

Great introduction to Lambda expressions(weblogs.asp.net)

submitted by firstbytefirstbyte(175) 5 years, 1 month ago

Lambda expressions: When combined with the built-in standard query extension methods provided in the System.Linq namespace in "Orcas", they provide a really rich way to query and interact with any type of data while preserving full compile-time checking and intellisense. read more...

add a comment |category: |Views: 39

tags: another

New "Orcas" Language Feature: Lambda Expressions(weblogs.asp.net)

submitted by joejoejoejoejoejoejoejoe(1140) 5 years, 1 month ago

Scott demonstrates lambda expressions and linq read more...

add a comment |category: |Views: 7

tags: another

C# 3.0 Lambda Expressions(blogs.msdn.com)

submitted by prasphyprasphy(780) 5 years, 2 months ago

Lambda expressions, a new feature in C# 3.0, have a more concise syntax to write anonymous functions. Lambda expressions express the implementation of a method and the instantiation of a delegate from the method with a single syntactical construct. read more...

add a comment |category: |Views: 49

tags: another

The Case for Lambdas, part 2: Better Generic Type Inference(diditwith.net)

submitted by cls2degcls2deg(1535) 5 years, 3 months ago

C# 3.0 Lambda expressions have distinct advantages over C# 2.0 anonymous methods. This article takes a look at how using lambda expressions can improve the compiler's type inference for generic methods. read more...

1 comment |category: |Views: 17

tags: another