Click or drag to resize

FrameViewOrderByT Method (String, ComparisonT)

Sorts all rows by the given function of the given column.

Namespace:  Meta.Numerics.Data
Assembly:  Meta.Numerics (in Meta.Numerics.dll) Version: 4.1.4
Syntax
public FrameView OrderBy<T>(
	string columnName,
	Comparison<T> comparer
)

Parameters

columnName
Type: SystemString
The column to sort on.
comparer
Type: SystemComparisonT
A comparison function of columnName values.

Type Parameters

T
The type of values being compared.

Return Value

Type: FrameView
A view of the data sorted by the function of the given column.
See Also