Use orderby with two values in CSharp
Description
The following code shows how to use orderby with two values.
Example
/*from w ww .j ava2 s. com*/
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
public class MainClass {
public static void Main() {
string[] digits = { "zero", "one", "two", "three"};
var sortedDigits =
from d in digits
orderby d.Length, d
select d;
Console.WriteLine("Sorted digits:");
foreach (var d in sortedDigits) {
Console.WriteLine(d);
}
}
}
The code above generates the following result.