Click or drag to resize

ComparisonComparerTCreateComparison Method

Creates a Comparison delegate from the given Comparer.

Namespace:  Koden.Utils
Assembly:  Koden.Utils (in Koden.Utils.dll) Version: 1.1.6453.26060
Syntax
public static Comparison<T> CreateComparison(
	IComparer<T> comparer
)

Parameters

comparer
Type: System.Collections.GenericIComparerT
Comparer to use when the returned delegate is called. Must not be null.

Return Value

Type: ComparisonT
A Comparison delegate which proxies to the given Comparer.
See Also