[C#]프로젝트명, 클래스명, 함수명 구하기 예제 System.Reflection.Assembly.GetExecutingAssembly().ManifestModule.Name; //프로젝트명 System.Reflection.MethodBase.GetCurrentMethod().DeclaringType.Name; //클래스명 System.Reflection.MethodBase.GetCurrentMethod().Name; //함수명 C# 2016.06.14