Home
C# / C Sharp
2D Graphics
Class Interface
Collections Data Structure
Components
Data Types
Database ADO.net
Date Time
Design Patterns
Development Class
Event
File Stream
Generics
GUI Windows Form
Internationalization I18N
Language Basics
LINQ
Network
Office
Reflection
Regular Expressions
Security
Services Event
Thread
Web Services
Windows
Windows Presentation Foundation
XML
XML LINQ
OrderBy « LINQ « C# / C Sharp
C# / C Sharp
LINQ
OrderBy
1.
OrderBy: prints an alphabetically sorted version of a string array
2.
string array sorted by the length each element
3.
products sorted alphabetically by the product name
4.
OrderBy with customized Comparer
5.
OrderBy with passing a lambda function
6.
OrderBy Descending
7.
products sorted by the number of units of each product that are in stock
8.
sorted alphabetically in descending order, using a case insensitive comparision.
9.
uses a compound orderby to sort a list of digits first by length of their name, and then alphabetically.
10.
an array of string values sorted first by length, then sorted alphabetically, using a case-insentive comparison.
11.
uses a compound orderby to sort a list of products, first by category, and then by unit price, from highest to lowest.
12.
First OrderBy Prototype
13.
Where with OrderBy