Last active
September 10, 2019 21:37
-
-
Save ezirmusitua/7a7bf5e25527528e0fd990db5228d22b to your computer and use it in GitHub Desktop.
[map list] map list in C# #C# #list
This file contains hidden or 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
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