Tag: Lambda Expression
Example of Function Delegates in C#
Below is a sample code snippet that demonstrates the function delegates or lambda expression in C# . Example of Function Delegates in C#
Anonymous Types are read-only in C#
If you try to set a value to the anonymous type in C# , you will receive an compiler error . The properties within the anonymous types are read-only properties. Anonymous Types are read-only in C# In the above code snippet , you will receive an compiler error “Error CS0200 Property or indexer ‘<anonymous type: string FirstName, string Last>.FirstName’ cannot be assigned to — it…
How to List out only Even Numbers from a List of Integers using Lambda Expression in C#?
Below is sample code snippet that demonstrates how to list out only even numbers from a list of integers using Lambda Expression in C#. How to List out only Even Numbers from a List of Integers using Lambda Expression in C#?
Example of Lambda Expression with Action Method in C#
Below is a sample code snippet that demonstrates the lambda expression with action method in C#. Example of Lambda Expression with Action Method in C#