■ Enumerable 클래스의 OrderByDescending<TSource, TKey> 확장 메소드를 사용해 요소를 내림차순으로 정렬하는 방법을 보여준다.
▶ 예제 코드 (C#)
1 2 3 4 5 6 7 8 9 10 11 12 13 |
using System; using System.Linq; string[] stringArray = { "C#", "Java", "Scala", "VB.NET", "C", "C++" }; var result = stringArray.OrderByDescending(s => s.Length); foreach(var element in result) { Console.WriteLine(element); } |