Skip to content
This repository was archived by the owner on Jan 14, 2025. It is now read-only.

Latest commit

 

History

History
35 lines (20 loc) · 1.39 KB

sets-2.md

File metadata and controls

35 lines (20 loc) · 1.39 KB

LINQ - Set Operators

The methods Distinct, Union, Intersect, and Except provide set operations to compare multiple sequences.

Find the intersection of two sets

This sample uses Intersect to create one sequence that contains the common values shared by both arrays.

Find the intersection of query results

This sample uses Intersect to create one sequence that contains the common first letter from both product and customer names.

Difference of two sets

This sample uses Except to create a sequence that contains the values from numbersA that are not also in numbersB.

Difference of two queries

This sample uses Except to create one sequence that contains the first letters of product names that are not also first letters of customer names.

Next: Conversion operators » Previous: Set operations distinct and union «

Home