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<int> func = () =>
{
return 0;
};
Func<int, int, int> func1 = (a, b) =>
{
return a+b;
};
Action<int> act = (a) =>
{
Console.WriteLine(a);
};
Action<string> act1 = (name) => Console.WriteLine(name);
}
}
}
'C# > 수업내용' 카테고리의 다른 글
[ C# 10일차 ] 개체 이니셜라이져 (0) | 2023.01.12 |
---|---|
[ C# 9일차 ] 람다 연습 (0) | 2023.01.11 |
[ C# 9일차 ] 익명메소드와 람다1 (0) | 2023.01.11 |
[ C# 9일차 ] 대리자 delegate 연습2 (0) | 2023.01.11 |
[ C# 9일차 ] 대리자 delegate 연습1 (0) | 2023.01.11 |