using System; using System.Collections.Generic; using System.Text; namespace GlitchyEngine.Extensions; public static class KeyValuePairExtension { public static void Deconstruct(this KeyValuePair tuple, out T1 key, out T2 value) { key = tuple.Key; value = tuple.Value; } }