Let's say I have a dictionary with points. So I could then write:
if (dict.TryGetValue(key,out (double x,double y) point))
point.x ...
But how do get rid of point
and unpack the elements of the tuple right away? I have something like this in mind:
if (dict.TryGetValue(key,out (out double x,out double y)))
x ...