You May Also Enjoy
C# Local Functions vs. Lambda Expressions.
6 minute read
C# Local Functions are often viewed as a further enhancement of lambda expressions. While the features are related, there are also major differences.
C# Tuples. Conversions.
10 minute read
In a statically typed language like C#, every new kind of type or a new expression needs to define how it fits into the framework of type conversions. Tuples...
C# Tuples. More about element names.
10 minute read
C# tuples can have optional element names. Here are some interesting details about tuple element names and how they are treated by the language.
C# Tuples. How tuples are related to ValueTuple.
5 minute read
As a matter of implementation details, C# tuples are implemented on top of ValueTuple types. Here are some details about their relationship.