반응형
/*
* made by so_Sal
*/
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 void Main(string[] args)
{
Calculate cal = (a, b) => a + b;
Console.WriteLine(cal(1, 3));
Dosomething Doit = () =>
{
Console.WriteLine("진짜 아무거나 해");
};
Doit();
}
}
}
// 람다식 예제
'Windows_ > Windows_C# & App' 카테고리의 다른 글
C#: LINQ를 이용한 데이터 처리 (0) | 2014.07.24 |
---|---|
C#: Func와 Action을 사용한 무명메소드 만들기 (0) | 2014.07.24 |
C#: Delegate와 1회용 Delegate (0) | 2014.07.24 |
C# - Console interface 기능. (0) | 2014.07.24 |
C# - 학생 성적처리, 관리 프로그램 소스 (0) | 2014.07.24 |