Click or drag to resize

CollectionExtensionsMinorityT(IEnumerableT, T, Boolean, IEqualityComparerT) Method

Returns the minority value in the collection, or defaultValue if no item represents the minority.

Namespace: GSF.Collections
Assembly: GSF.Core (in GSF.Core.dll) Version: 2.4.181-beta
Syntax
public static T Minority<T>(
	this IEnumerable<T> source,
	T defaultValue,
	bool forwardSearch = true,
	IEqualityComparer<T> comparer = null
)
View Source

Parameters

source  IEnumerableT
An enumeration over which to find the minority element.
defaultValue  T
Default value to return if no item represents the minority.
forwardSearch  Boolean  (Optional)
true to search forward in source; otherwise false to search backwards.
comparer  IEqualityComparerT  (Optional)
The IEqualityComparerT implementation to use when comparing keys, or null to use the default comparer for the type of the key.

Type Parameters

T
Type of elements in the source.

Return Value

T
The minority value in the collection.

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