LINQ_to_Objects의_기초


LINQ_to_Objects의_기초

using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace LINQ_to_Objects의_기초 { class Program { static void Main(string[] args) { var names = new List { "Seoul", "New Delhi", "Bangkok", "London", "Paris", "Berlin","Canberra","Hong Kong" }; IEnumerable Query = names.Where(s => s.Length IEnumerable 인터페이스를 구현하고 있는 형이면 //Where메서드를 해..


원문링크 : LINQ_to_Objects의_기초