C# 람다식 Ramdba
람다식(Ramdba) - 익명 메소드 - 메소드와 동일하게 입력(파라미터), 출력(리턴) - 문법 : (매개변수) => { 함수 내부(식) }; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace _120_Ramdba { delegate void dPrint(string str); delegate int dAdd(int a); class Program { static public void CallPrint(string str) { Console.WriteLine(str); } static public int CallAdd(int a)..