KeyValuePairExtensions.cs 298 B

123456789101112
  1. using System.Collections.Generic;
  2. namespace MeidoPhotoStudio.Plugin;
  3. public static class KeyValuePairExtensions
  4. {
  5. public static void Deconstruct<TKey, TValue>(this KeyValuePair<TKey, TValue> kvp, out TKey key, out TValue value)
  6. {
  7. key = kvp.Key;
  8. value = kvp.Value;
  9. }
  10. }