C#

[ C# ] 메서드 속의 메서드, Nested Methods, Method Within A Method

정보처리마법사 2018. 9. 30. 23:45
반응형

 

[ C# ] 메서드 속의 메서드, Nested Methods, Method Within A Method

 

 

 


C# Nested Methods, Method Within A Method

 

 

 

 

 

이모티콘・01・고양이 마멋 친구들 - Google Play 앱

이모티콘・01・고양이 마멋 친구들: 무료 이모티콘, 회원가입 없이! 카톡, SNS로 감정 표현이 쉬워져요. 귀여움 가득, 대화창을 더 풍성하게!

play.google.com

 

 

 

 

안녕하세요 정보처리마법사 입니다.

 

 

 

이번 포스팅의 주제는  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<intint>(i => { return i++; });
   int test = function(6);
}
cs

 

 

 

 

참고 및 출처 : https://stackoverflow.com

 

 

또다른 참고 : Func<T, TResult> Delegate  

 

 

 

 

 

 

 

 

이상으로 포스팅을 마칩니다. 감사합니다.

 

 

 

 

 



 

 

 

 

 

 

 

 

 

 

 

 

 

 

Fin.

 

잘 못 된 정보가 있으면 말씀해주세요~

 

공감버튼 클릭은 작성자에게 큰 힘이 됩니다.  행복한 하루 되세요.

 


 

 

반응형