Skip to content

Instantly share code, notes, and snippets.

@13xforever
Last active December 18, 2015 02:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save 13xforever/5713061 to your computer and use it in GitHub Desktop.
Save 13xforever/5713061 to your computer and use it in GitHub Desktop.
KeyValuePair constuction helper
public static class KeyValuePair
{
public static KeyValuePair<TKey, TValue> Create<TKey, TValue>(TKey key, TValue value)
{
return new KeyValuePair<TKey, TValue>(key, value);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment