Click or drag to resize

ExtensionsOperations Method

Provides linq like methods for handling and converting IEnumerables.

This is separated from actual extension to avoid confusions with System.Linq extensions. And also to avoid accidental usage.

Namespace:  Cauldron.Collections
Assembly:  Cauldron.Collections (in Cauldron.Collections.dll) Version: 3.2.0.1 (3.2.0.1)
Syntax
C#
public static IEnumerableExtensions Operations(
	this IEnumerable source
)

Parameters

source
Type: System.CollectionsIEnumerable
The IEnumerable of interest.

Return Value

Type: IEnumerableExtensions
A new instance of the IEnumerableExtensions class.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type IEnumerable. 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).
Exceptions
ExceptionCondition
ArgumentNullExceptionsource is null
See Also