using System.Collections.Generic; namespace Spectre.Console { internal static class DictionaryExtensions { public static void Deconstruct(this KeyValuePair tuple, out T1 key, out T2 value) { key = tuple.Key; value = tuple.Value; } } }