Computer >> Máy Tính >  >> Lập trình >> C#

Chương trình C # trả về sự khác biệt giữa hai chuỗi

Đặt hai chuỗi.

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

Để nhận được sự khác biệt giữa cả hai mảng ở trên, hãy sử dụng phương thức Ngoại trừ ().

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

Sau đây là mã hoàn chỉnh.

Ví dụ

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);
      }
   }
}

Đầu ra

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