public class Example
{
public static void Main()
{
Console.Write("<< Linq - 필터링 예제 >> \n");
List<CodeStore> markets = new List<CodeStore>
{
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 이라는 수량자 함수를 사용함.
IEnumerable<string> names = from market in markets
where market.Items.All(item => item.Length == 5)
select market.Name;
foreach (string name in names)
{
Console.WriteLine($"{name} store");
}
Console.WriteLine(System.Environment.NewLine);
Console.WriteLine("Press any key to exit");
Console.ReadKey();
}
}
class CodeStore
{
public string Name { get; set; }
public string[] Items { get; set; }
}