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
Syntaxpublic FrameView OrderBy<T>(
string columnName,
Comparison<T> comparer
)
Public Function OrderBy(Of T) (
columnName As String,
comparer As Comparison(Of T)
) As FrameView
public:
generic<typename T>
FrameView^ OrderBy(
String^ columnName,
Comparison<T>^ comparer
)
member OrderBy :
columnName : string *
comparer : Comparison<'T> -> FrameView
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:
FrameViewA view of the data sorted by the function of the given column.
See Also