using System.Collections.Generic; namespace MeidoPhotoStudio.Plugin; public static class KeyValuePairExtensions { public static void Deconstruct(this KeyValuePair kvp, out TKey key, out TValue value) { key = kvp.Key; value = kvp.Value; } }