[C#/Linq] Where절에 수량자 함수 이용하기. (필터링)


[C#/Linq] Where절에 수량자 함수 이용하기. (필터링)

public class Example { public static void Main() { Console.Write("> \n"); List markets = new List { new CodeStore { Name = "CK's", Items = new string[] { "kiwi", "cheery", "banana" } }, new CodeStore { Name = "PK's", Items = new string[] { "melon", "mango", "olive" } }, new CodeStore { Name = "ZK's", Items = new string[] { "kiwi", "apple", "orange" } }, }; // items의 길이가 모두 5인것을 충족하는지 검사하기 위한 All..


원문링크 : [C#/Linq] Where절에 수량자 함수 이용하기. (필터링)