Example of array.map() in C#?

JavascriptC#ArraysDictionary

Javascript Problem Overview


Consider the following common JavaScript construct

var ages = people.map(person => person.age);

Giving the desired result, which is an array of ages.

What is the equivalent of this in C#? Please include a simple example. The documentation indicates select or possible selectAll but I can't find an example online or any other SO question which can be pasted in and works.

If possible, give an example which turns the following array {1,2,3,4} into the following {'1a','2a','3a','4a'}. For each element, append "a" to the end, turning it from an Integer to a String.

Javascript Solutions


Solution 1 - Javascript

This is called projection which is called Select in LINQ. That does not return a new array (like how JavaScript's .map does), but an IEnumerable<T>. You can convert it to an array with .ToArray.

using System.Linq; // Make 'Select' extension available
...
var ages = people.Select(person => person.Age).ToArray();

Select works with all IEnumerable<T> which arrays implement. You just need .NET 3.5 and a using System.Linq; statement.

For your 2nd example use something like this. Notice there are no arrays in use - only sequences.

 var items = Enumerable.Range(1, 4).Select(num => string.Format("{0}a", num));

Solution 2 - Javascript

Only for info, if people is a List<Person>, the ConvertAll method is pretty similar to JS's map, e.g:

var ages = people.ConvertAll<int>(person => person.age);

But if you have an Array and you want to use any List<T> methods, you can easily achieve that by converting your variable into a List from Array, e.g:

var ages = people.ToList().ConvertAll<int>(person => person.age);

And finally, if you really need an Array back, then you could convert it back, e.g:

var ages = people.ToList().ConvertAll<int>(person => person.age).ToArray();

But that last example is not as good as the other answers, and you should use Select if you're working only with Arrays. But if you can, I suggest you to move to List<T>, it's much better!

Solution 3 - Javascript

The LINQ extension methods on collections give you a host of really handy utilities. Select is one of them:

int[] arr = { 1, 2, 3 };
IEnumerable<string> list = arr.Select(el => el + "a");
string[] arr2 = list.ToArray();

foreach (var str in arr2)
	Console.Write(str + " ");

This should output:

1a 2a 3a

This can safely be condensed to a 1-liner:

string[] arr2 = arr.Select(el => el + "a").ToArray();

A working example:

https://ideone.com/mxxvfy

Related docs:

Enumerable.Select

Basic LINQ Query Operations (C#)

Solution 4 - Javascript

Linq's .Select is the map equivalent and .Aggregate is the fold equivalent.

var nums = new[] {1,2,3,4};
string[] r = nums.Select(x => x + "a").ToArray();

Solution 5 - Javascript

If you don't want to perform conversion to/from an array Array.ConvertAll can to the work. It is declared in Array class of System namespace (remember to add using System; at the top of the file) as:

public static TOutput[] ConvertAll<TInput,TOutput> (TInput[] array, Converter<TInput,TOutput> converter);

Example:

var items = new[] {"abc", "ab", "abcde"};

var result = Array.ConvertAll(items, p => p.Length);
            
Console.Out.WriteLine(string.Join(", ", result)); // Outputs 3, 2, 5

Method reference: https://docs.microsoft.com/en-us/dotnet/api/system.array.convertall?view=net-5.0

Check this section to see .NET version compatibility: https://docs.microsoft.com/en-us/dotnet/api/system.array.convertall?view=net-5.0#applies-to

Solution 6 - Javascript

You can use the keywords from, select, in and while;
Or for your example:

 var ages = (from person in people select person.age).ToArray();

So essentially the syntax would be:

 <<list-output>> = (from <<var-name>> in <<list-input>> select <<operation>>);

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionCode WhispererView Question on Stackoverflow
Solution 1 - JavascriptDaniel A. WhiteView Answer on Stackoverflow
Solution 2 - JavascriptBuzinasView Answer on Stackoverflow
Solution 3 - Javascriptpb2qView Answer on Stackoverflow
Solution 4 - JavascriptRichard SchneiderView Answer on Stackoverflow
Solution 5 - JavascriptplewandView Answer on Stackoverflow
Solution 6 - JavascriptmerlinView Answer on Stackoverflow