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) · 774 Bytes

groupings-2.md

File metadata and controls

18 lines (10 loc) · 774 Bytes

LINQ - Grouping Operators with custom comparer

The group by and into can use custom comparers to separate groups.

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: Nested groupings with a custom comparer » Previous: Groupings «

Home