Skip to content

Instantly share code, notes, and snippets.

@ezirmusitua
Last active September 10, 2019 21:37
Show Gist options
  • Save ezirmusitua/7a7bf5e25527528e0fd990db5228d22b to your computer and use it in GitHub Desktop.
Save ezirmusitua/7a7bf5e25527528e0fd990db5228d22b to your computer and use it in GitHub Desktop.
[map list] map list in C# #C# #list
var newSequence = originalSequence.Select(x => {translation});
// OR
var newSequence = from x in originalSequence
select {translation};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment