Advertisement
Guest User

Untitled

a guest
Feb 21st, 2019
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. public static class ExtensionMethods
  2. {
  3. public static void Deconstruct<T1, T2>(this KeyValuePair<T1, T2> Tuple, out T1 Key, out T2 Value)
  4. {
  5. Key = Tuple.Key;
  6. Value = Tuple.Value;
  7. }
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement