Tuples, tuples... value tuples!
Introduction
In the very first beginning of tuples in c# I firstly skipped it, because the readability had been not what I though of creating readable code.
Example from MSDN:
(bool, string) t1 = (true, "");
Console.WriteLine($"Tuple with value {t1.I...
blog.sigterm.eu3 min read