반응형
[ C# ] 메서드 속의 메서드, Nested Methods, Method Within A Method
C# Nested Methods, Method Within A Method
안녕하세요 정보처리마법사 입니다.
이번 포스팅의 주제는 Nested Methods 에 관한 내용입니다.
제가 나중에 까먹지 않기 위해 기록하는 간단한 포스팅입니다.
Ctrl + C , Ctrl + V
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
public static void Method1()
{
var method2 = new Action(() => { /* action body */ } );
var method3 = new Action(() => { /* action body */ } );
//call them like normal methods
method2();
method3();
//if you want an argument
var actionWithArgument = new Action<int>(i => { Console.WriteLine(i); });
actionWithArgument(5);
//if you want to return something
var function = new Func<int, int>(i => { return i++; });
int test = function(6);
}
|
cs |
참고 및 출처 : https://stackoverflow.com
또다른 참고 : Func<T, TResult> Delegate
이상으로 포스팅을 마칩니다. 감사합니다.
Fin.
잘 못 된 정보가 있으면 말씀해주세요~
공감버튼 클릭은 작성자에게 큰 힘이 됩니다. 행복한 하루 되세요.
반응형