तत्वों के घन की गणना करने के लिए चयन विधि और लैम्ब्डा एक्सप्रेशन का उपयोग करें।
हमारी सूची निम्नलिखित है।
List<int> list = new List<int> { 2, 4, 5, 7 };
अब, Select() विधि का उपयोग करें और घन की गणना करें।
list.AsQueryable().Select(c => c * c * c);
निम्नलिखित संपूर्ण उदाहरण है।
उदाहरण
using System; using System.Linq; using System.Collections.Generic; public class Demo { public static void Main() { List<int> list = new List<int> { 2, 4, 5, 7 }; Console.WriteLine("Elements..."); // initial list javascript:void(0) foreach (int n in list) Console.WriteLine(n); // cube of each element IEnumerable<int> res = list.AsQueryable().Select(c => c * c * c); Console.WriteLine("Cube of each element..."); foreach (int n in res) Console.WriteLine(n); } }
आउटपुट
Elements... 2 4 5 7 Cube of each element... 8 64 125 343