C# Lambda Part 3


This entry is part 3 of 3 in the series C# Lambda

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.

Series Navigation<< C# Lambda Part 2