- C# Lambda Introduction
- C# Lambda Part 2
- C# Lambda Part 3
In this part 3 post we are going to link back to other examples of code that shows the use of Lambda expressions.
Functions
In the post called C# Functions Introduction we illustrate the use of a lambda expression.
Struct
In this example we have defined a struct called Customer. This example is in the post called C# Structs with Functions. The Customer struct has a first name and a last name. We can also define Name that concatenates the first name with the last name and puts a space between the two. Remember that structs have data members and function members, as mentioned in the post called C# Structs Introduction.