Click or drag to resize

FrameView.OrderBy<T> Method (String, Comparison<T>)

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: System.String
The column to sort on.
comparer
Type: System.Comparison<T>
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