Click or drag to resize
Akka.NETEnumerableExtensionsGroupedT Method
Partitions elements in fixed size Credits to http://stackoverflow.com/a/13731854/465132

Namespace:  Akka.Cluster.Sharding
Assembly:  Akka.Cluster.Sharding (in Akka.Cluster.Sharding.dll) Version: 1.2.3.42 (1.2.3.42)
Syntax
public static IEnumerable<IEnumerable<T>> Grouped<T>(
	this IEnumerable<T> items,
	int size
)

Parameters

items
Type: System.Collections.GenericIEnumerableT
TBD
size
Type: SystemInt32
The number of elements per group

Type Parameters

T

[Missing <typeparam name="T"/> documentation for "M:Akka.Cluster.Sharding.EnumerableExtensions.Grouped``1(System.Collections.Generic.IEnumerable{``0},System.Int32)"]

Return Value

Type: IEnumerableIEnumerableT

[Missing <returns> documentation for "M:Akka.Cluster.Sharding.EnumerableExtensions.Grouped``1(System.Collections.Generic.IEnumerable{``0},System.Int32)"]

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type IEnumerableT. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
See Also