람다식에 대해 알아봅니다. 람다식의 일반 구문은 다음과 같습니다. 람다 식 member => expression; 예제 1 람다식(=>)을 이용해서 메서드를 간단하게 표현할 수 있습니다. internal class Program { static void Hi() { Console.WriteLine("안녕하세요!"); } static void Main(string[] args) { Hi(); } } 위 코드를 람다식을 이용해서 다음과 같이 표현할 수 있습니다. internal class Program { static void Hi() => Console.WriteLine("안녕하세요!"); static void Main(string[] args) { Hi(); } } 예제 2 매개변수를 갖는 람다식을 작성..