-
-
Save werwolfby/b836ba09543f3554fe96dd9e10728a16 to your computer and use it in GitHub Desktop.
Deconstruct extension method for KeyValuePair in C# 7
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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