Oktatás * Programozás 2 * Szkriptnyelvek * levelezősök Félévek Linkek * kalendárium |
CSharp /
20180403blist comprehensionWhat is the equivalent of Python's list comprehension? var li1 = new List<string> {"auto", "villamos", "metro"}; // ["auto", "villamos", "metro"] var res1 = from s in li1 select s.ToUpper() + "!"; // ["AUTO!", "VILLAMOS!", "METRO!"] Note that var res10 = from n in Enumerable.Range(0, 9) where n % 2 == 0 select n; // 0, 2, 4, 6, 8 Get the even numbers below 10. |
Blogjaim, hobbi projektjeim * The Ubuntu Incident [ edit ] |