PreviousNext

Accessing Tuples at Runtime using Reflection

by bill-s, 2018-02-10T06:49:10.000Z

C# 7 added Tuples and provides an awesome syntax for accessing them. C# 7.1 improved the usability of tuples further with Tuple Name Inference. However, sometimes you need to access them dynamically and this can be tricky.

Read More