3 Replies
they're using tuples for what looks like the sole purpose of making the constructor a one-liner: https://learn.microsoft.com/en-us/dotnet/csharp/language-reference/builtin-types/value-tuples
Tuple types - C# reference
Learn about C# tuples: lightweight data structures that you can use to group loosely related data elements
so it's practically the same as
oh ok thanks