string[] names = { "Alpha", "Brian", "Connie", "David", "Frank", "George", "Harry", "Inigo" };
           
            IEnumerable expr = from s in names

                               where s.Length == 5

                               orderby s

                               select s.ToUpper();

            foreach (string item in expr)
                MessageBox.Show(item);

뭐 대충 이런 건 가보다... DB에서 읽어와 적적할게 활용하면 괜찮을 듯 해 보입니다.


WRITTEN BY
테네시왈츠
항상 겸손하게 항상 새롭게 항상 진실하게

,