Computer >> 컴퓨터 >  >> 프로그램 작성 >> C#

두 시퀀스 간의 차이를 반환하는 C# 프로그램

<시간/>

두 개의 시퀀스를 설정합니다.

double[] arr1 = { 10.2, 15.6, 23.3, 30.5, 50.2 };
double[] arr2 = { 15.6, 30.5, 50.2 };

위의 두 배열의 차이를 확인하려면 except() 메서드를 사용하십시오.

IEnumerable<double> res = arr1.AsQueryable().Except(arr2);

다음은 전체 코드입니다.

using System;
using System.Linq;
using System.Collections.Generic;
class Demo {
   static void Main() {
      double[] arr1 = { 10.2, 15.6, 23.3, 30.5, 50.2 };
      double[] arr2 = { 15.6, 30.5, 50.2 };
      Console.WriteLine("Initial List...");
      foreach(double ele in arr1) {
         Console.WriteLine(ele);
      }
      IEnumerable<double> res = arr1.AsQueryable().Except(arr2);
      Console.WriteLine("New List...");
      foreach (double a in res) {
         Console.WriteLine(a);
      }
   }
}

출력

Initial List...
10.2
15.6
23.3
30.5
50.2
New List...
10.2
23.3