using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Study10 { class App { delegate void MyDel(); //생성자 public App() { Console.WriteLine("App"); Func func = () => { return 0; }; Func func1 = (a, b) => { return a+b; }; Action act = (a) => { Console.WriteLine(a); }; Action act1 = (name) => Console.WriteLine(name); } } }