By tag: Sorting
0
kicks
Dynamite: High Performace Dynamic Sorting Using Expressions
Easy-to-use and high performance dynamic sorting library with support for most type of sequences, multiple fields, nested properties and SQL-like syntax, developed using System.Linq.Expression classes. Also discusses performance issues with sorting and how to improve performance of sorting in Window...
0
kicks
Sorting System.Collections.Generic.List<T>
This post shows the sorting techinque using anonymous delegate that can be implemented in any custom type generic lis based on the selected property.
0
kicks
Sort Routines
Need to sort through lots of data? Choose a C# sort routine to suit your requirements. One of the fundamental problems of computing is ordering a list of items. There are many solutions to this problem: these are known as sorting algorithms. Some sorting algorithms are simple and intuitive, while ot...
0
kicks
Custom Sorting with IComparable and IComparer
Sometimes, you want to be able to sort objects on a number of different fields. For example, employees can be sorted by their name, years of service, pay rate; or blog posts by the date they were posted, their status, number of comments, the author. It's really easy to offer all these sorting method...
0
kicks
DataGrid Paging and Sorting Using A DataReader
This article will demonstrate two ways one could implement the DataReader to bind a DataGrid, that includes caching, paging and persistent bi-directional sorting, all without the use of a DataAdapter/DataSet at all!