中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

怎么使用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
郧西县| 武鸣县| 江城| 尼木县| 花莲市| 尼勒克县| 嘉义市| 扎囊县| 三门峡市| 九台市| 南皮县| 吉首市| 道真| 社旗县| 隆化县| 宜都市| 麻江县| 富裕县| 桓台县| 墨玉县| 甘孜| 承德县| 绥棱县| 个旧市| 博乐市| 称多县| 四平市| 武乡县| 平遥县| 余江县| 集安市| 高邑县| 霍州市| 隆子县| 扶绥县| 阜南县| 阿鲁科尔沁旗| 会泽县| 丽水市| 称多县| 长葛市|