C# 람다
[C#] Extension Method
1. 식-본문 메소드 using System; class Program { public static int Square(int a) { return a * a; } public static void Main() { Console.WriteLine(Square(3)); } } ① 식 본문 메소드 (expression - bodied method) using System; class Program { /* public static int Square(int a) { return a * a; } */ public static int Square(int a) => a * a; public static void Main() { Console.WriteLine(Square(3)); } } => 메소드의 구현이 단순..