In this LINQ example, how do you get at the values within the groupings?
string[] anagrams = {"from", "salt", "earn ", "last ", "near ", "form
"};
var orderGroups = anagrams.GroupB y(
w =w.Trim(),
new AnagramEquality Comparer());
*** Sent via Developersdex http://www.developersdex.com ***
string[] anagrams = {"from", "salt", "earn ", "last ", "near ", "form
"};
var orderGroups = anagrams.GroupB y(
w =w.Trim(),
new AnagramEquality Comparer());
*** Sent via Developersdex http://www.developersdex.com ***
Comment