C# 배열 List 문자 또는 시간 날짜 순서로 LINQ 람다식 정렬하기 예제
C#에서는 숫자 이외에도 문자나 시간으로도 정렬을 시킬 수 있습니다.우선 문자열 요소를 가지고 정렬하는 방법을 보겠습니다.문자열 정렬문자열 요소 정렬 예제using System;using System.Collections.Generic;using System.Linq;namespace Sample { class Sample { static void Main() { string[] src = {"Park", "Kim", "Lee"}; // Array.Sort string[] dst1 = new string[src.Length]; Ar...