CODEKILLER

반응형

> Enumerable.Except (차집합 샘플)

차집합 쿼리예제
차집합 쿼리예제

public class Example
{
    public static void Main()
    {
        Console.Write("<< 두 목록의 차집합을 구하는 쿼리 >> \n");

        string[] names1 = { "A", "B", "C", "D", "E", "F" };
        string[] names2 = { "D", "E", "F", "G", "H", "I" };

        // names1에는 있지만, names2에는 없는 항목을 추출.
        IEnumerable<string> differenceQuery =
          names1.Except(names2);

        // 출력
        foreach (string s in differenceQuery)
            Console.WriteLine(s);

        Console.WriteLine(System.Environment.NewLine);
        Console.WriteLine("Press any key to exit");
        Console.ReadKey();
    }
}
반응형

공유하기

facebook twitter kakaoTalk kakaostory naver band