Q. How to multiply by 10 , each element of an integer Array by using LINQ ?
Ashwani Chaudhary
Select an image from your device to upload
int[] multiply = new int[] { 1, 2, 3, 4, 5, 6 }; IEnumerable result = multiply.Select(n => n * 10); foreach (int n in result) { Console.Write(n + “; “); }