/* * http://sosal.kr/ * made by so_Sal */ Func 델리게이트: 반환(return) 값이 있는 익명 메소드/ 무명함수를 위한 델리게이트Action 델리게이트: 반환(return) 값이 없는 익명 메소드/ 무명함수를 위한 델리게이트 using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;using System.Collections; namespace test_console{ class Program { delegate int Calculate(int a, int b); delegate void Dosomething(); static ..