Stories recently tagged with 'Sorting'

Dynamite: High Performace Dynamic Sorting Using Expressions(codeproject.com)

submitted by henjonhenjon(15) 3 years, 8 months ago

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 Windows Presentation Foundation collection views. read more...

add a comment |category: |Views: 53

tags: another

Sorting System.Collections.Generic.List<T>(devintelligence.com)

submitted by adventureradventurer(2244) 5 years, 2 months ago

This post shows the sorting techinque using anonymous delegate that can be implemented in any custom type generic lis based on the selected property. read more...

add a comment |category: |Views: 39

tags: another

Sort Routines (en.csharp-online.net)

submitted by HyleHyle(2755) 5 years, 5 months ago

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 others are extremely complicated, but produce really fast results. Seven of the most common sorting algorithms are: Bubble Sort, Heap Sort, Insertion Sort, Merge Sort, Quick Sort, Selection Sort, Shell Sort. read more...

add a comment |category: |Views: 22

tags: another

Custom Sorting with IComparable and IComparer(eggheadcafe.com)

submitted by ourcurrentfutureourcurrentfuture(1225) 5 years, 7 months ago

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 methods. Best of all you don't have to write too much code. read more...

add a comment |category: |Views: 40

tags: another

DataGrid Paging and Sorting Using A DataReader(developerfusion.co.uk)

submitted by james_crowleyjames_crowley(315) 6 years, 3 months ago

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! read more...

add a comment |category: |Views: 324

tags: another