반응형
현재 실행하는 메소스 정보를 확인해 보도록 하겠다.
using System.Reflection;
public void GetMethodInfo()
{
Debug.WriteLine(string.Format("Class Full Name : {0}", MethodBase.GetCurrentMethod().ReflectedType.FullName));
Debug.WriteLine(string.Format("method Name : {0}", MethodBase.GetCurrentMethod().Name));
}
/* 결과
Class Full Name : UnitTestProject.UnitTest1
method Name : GetMethodInfo
*/
MSDN
사용 예시
반응형
'Development > c#' 카테고리의 다른 글
[c#] query 를 StringBuilder 로 변환 하기 (0) | 2021.11.03 |
---|---|
[C#] IPConfig 결과 값 받아오기 (0) | 2021.05.31 |
[C#] 경과 시간 확인 하기 (0) | 2020.12.15 |
「C#」Clickonce 설치 시 "응용프로그램 설치 - 보안 경로" 로 인해 설치가 안될때 (0) | 2020.11.23 |
[c#] DateTime 차이 계산 (0) | 2020.07.24 |