using System.Collections.Generic; namespace VRMShaders { public static class KeyValuePariExtensions { public static void Deconstruct(this KeyValuePair pair, out T key, out U value) { key = pair.Key; value = pair.Value; } } }