Create new object in select operator in CSharp
Description
The following code shows how to create new object in select operator.
Example
/* w ww . j a v a2 s.c o m*/
using System;
using System.Linq;
using System.Collections;
using System.Collections.Generic;
public class MainClass {
public static void Main() {
string[] presidents = {"A", "Ar", "Buc", "Bush", "Carte", "Clevel"};
var nameObjs = presidents.Select(p => new { LastName = p, Length = p.Length });
foreach (var item in nameObjs)
Console.WriteLine("{0} is {1} characters long.", item.LastName, item.Length);
}
}
The code above generates the following result.