Given the following:
var dic = new Dictionary<string, (int, int)>()
{
["A"] = (1, 2)
};
dic.TryGetValue("A", out (int, int) value);
I can easily get the value out of the dictionary, but how can I deconstruct it to get each individual values so something like this:
dic.TryGetValue("A", out var (left, right));