I started using the new tuple feature in c# 7.0 but I noticed that neither in the function that returns a tuple nor in its caller is possible to check the variable values in debug mode. Instead an exception is shown:
$exception error CS8182: Predefined type 'ValueTuple`2' must be a struct.
Is there a way to get rid of that glitch and debug normally?