首頁 >後端開發 >C#.Net教程 >C#中如何比較兩個陣列?

C#中如何比較兩個陣列?

WBOY
WBOY轉載
2023-08-27 11:57:111223瀏覽

C#中如何比較兩個陣列?

首先,設定要比較的兩個陣列-

// two arrays
int[] arr = new int[] { 99, 87, 56, 45};
int[] brr = new int[] { 99, 87, 56, 45 };

現在,使用SequenceEqual() 比較兩個陣列-

arr.SequenceEqual(brr);

以下是比較兩個數組的程式碼-

範例

using System;
using System.Linq;

namespace Demo {
   class Program {

      static void Main(string[] args) {

         // two arrays
         int[] arr = new int[] { 99, 87, 56, 45};
         int[] brr = new int[] { 99, 87, 56, 45 };

         // compare
         Console.WriteLine(arr.SequenceEqual(brr));
      }
   }
}
#

以上是C#中如何比較兩個陣列?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文轉載於:tutorialspoint.com。如有侵權,請聯絡admin@php.cn刪除