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

Latest commit

 

History

History
18 lines (10 loc) · 797 Bytes

groupings-3.md

File metadata and controls

18 lines (10 loc) · 797 Bytes

LINQ - Nested Grouping Operators with custom comparer

The group by and into can use custom comparers to separate groups. These queries can be nested.

These samples use the following custom comparer. It compares two strings to see if they are anagrams. (Anagrams are pairs of words formed from the same letters.)

Groupby with a custom comparer

Next: Set operations » Previous: Groupings with a custom comparer «

Home