91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

怎么使用LINQ Intersect方法比較兩個字符串數組

小億
97
2024-04-02 09:58:25
欄目: 編程語言

你可以使用LINQ Intersect方法來比較兩個字符串數組,找出它們共同的元素。下面是一個示例:

```csharp

using System;

using System.Linq;

class Program

{

static void Main()

{

string[] array1 = { "apple", "banana", "orange", "grape" };

string[] array2 = { "orange", "grape", "kiwi", "pear" };

var commonElements = array1.Intersect(array2);

Console.WriteLine("Common elements in the two arrays:");

foreach (var element in commonElements)

{

Console.WriteLine(element);

}

}

}

```

在上面的示例中,我們定義了兩個字符串數組`array1`和`array2`,然后使用LINQ的`Intersect`方法找出這兩個數組的共同元素。最后,我們遍歷輸出共同元素的值。運行該程序,輸出將會是:

```

Common elements in the two arrays:

orange

grape

```

這表明`array1`和`array2`中共同的元素是"orange"和"grape"。

0
伊金霍洛旗| 吴忠市| 广州市| 丹凤县| 文化| 会泽县| 仪陇县| 岫岩| 砀山县| 新沂市| 洛南县| 敖汉旗| 虞城县| 西宁市| 卫辉市| 微博| 邢台市| 罗源县| 天峨县| 汶川县| 西城区| 甘德县| 乌拉特前旗| 威信县| 石棉县| 桂阳县| 海南省| 德兴市| 扎鲁特旗| 汾阳市| 马龙县| 成武县| 逊克县| 福贡县| 衡水市| 洛扎县| 江城| 无锡市| 龙川县| 酒泉市| 阜新|