2 writes to groupings
System.Core (2)
System\Linq\Enumerable.cs (2)
2208groupings = new Grouping[7]; 2295groupings = newGroupings;
6 references to groupings
System.Core (6)
System\Linq\Enumerable.cs (6)
2260for (Grouping g = groupings[hashCode % groupings.Length]; g != null; g = g.hashNext) 2263if (count == groupings.Length) Resize(); 2264int index = hashCode % groupings.Length; 2269g.hashNext = groupings[index]; 2270groupings[index] = g;