Obfuscation of Value Tuples
C# 7 and Visual Basic 15 introduced the notion of value tuples. The concept is similar to what you may find in System.Tuple but with two important distinctions:
- The new System.ValueTuple is a value type while the older System.Tuple is a reference type. The value type tends to be a more efficient data type when it comes to passing the values in and out of the method calls