Skip to content

Instantly share code, notes, and snippets.

@emoacht
Created March 10, 2017 11:10
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save emoacht/e15808a8c2ef36d9154e2ea3f4e49c78 to your computer and use it in GitHub Desktop.
Save emoacht/e15808a8c2ef36d9154e2ea3f4e49c78 to your computer and use it in GitHub Desktop.
Deconstruct extension method for KeyValuePair in C# 7
public static class KeyValuePairExtension
{
public static void Deconstruct<TKey, TValue>(this KeyValuePair<TKey, TValue> source, out TKey Key, out TValue Value)
{
Key = source.Key;
Value = source.Value;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment