Is there a shorthand way to convert a Tuple to a ValueTuple?
问题 I have just included a DLL file into my project and am using a method which returns a List<Tuple> . I have only recently became aware of the ValueTuple datatype in C# 7 and want to use it instead of the normal Tuples which are returned. I am aware that I could loop through and do the conversion manually however I would like to avoid doing this if possible and was wondering if anyone was aware of a shorthand way to casting a Tuple to a ValueTuple? If I am being ignorant and this isn't possible