Skip to content

Instantly share code, notes, and snippets.

@pjmagee
Created August 15, 2013 09:13
Show Gist options
  • Select an option

  • Save pjmagee/6239470 to your computer and use it in GitHub Desktop.

Select an option

Save pjmagee/6239470 to your computer and use it in GitHub Desktop.
return stringArray.Zip(intArray, (key, value) => new KeyValuePair<string, int>(key, value)).ToDictionary(d => d.Key, d => d.Value);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment