Top "Valuetuple" questions

This covers the ValueTuple struct used by C#'s tuples

How to create a List of ValueTuple?

Is it possible to create a list of ValueTuple in C# 7? like this: List<(int example, string descrpt)> …

c# c#-7.0 valuetuple
When to use: Tuple vs Class c# 7.0

Before Tuples, I used to create a class and its variables then create object from this class and make that …

c# tuples c#-7.0 valuetuple
Check if value tuple is default

How to check if a System.ValueTuple is default? Rough example: (string foo, string bar) MyMethod() => default; // Later var …

c# c#-7.2 valuetuple
Is it possible to bind to a ValueTuple field in WPF with C#7

If I have a viewmodel property public (string Mdf, string MdfPath) MachineDefinition { get; set; } and I try to bind to …

c# wpf xaml valuetuple