C# LINQ 基础 互动版

在线工具推荐: Three.js AI纹理开发包 - YOLO合成数据生成器 - GLTF/GLB在线编辑 - 3D模型格式在线转换 - 可编程3D场景编辑器

Intersect

Intersect将同时存在于两个序列中的元素挑选出来,组成一个新的序列。代码如下:

static void Main()
{
    int[] id1 = { 44, 26, 92, 30, 71, 38 };
    int[] id2 = { 39, 59, 83, 47, 26, 4, 30 };
    //Intersect用法
    IEnumerable&ltint&gt both = id1.Intersect(id2);
    foreach (int id in both)
            Console.WriteLine(id);
}

运行结果为:

26
30