리플렉션을 사용한 호출 메서드 이해
C#에서는 리플렉션을 사용하여 호출 메서드 및 해당 원래 클래스에 대한 정보를 검색할 수 있습니다. . 이를 통해 개발자는 호출 컨텍스트에 대한 지식이 필요한 유틸리티 또는 로깅 기능을 만들 수 있습니다.
호출 메서드 이름 및 클래스 가져오기
호출 메서드 이름을 가져오려면 리플렉션을 사용하여 포함 클래스를 생성하려면 다음 단계를 따르세요.
첫 번째 프레임을 나타내는 StackFrame 개체를 만듭니다. 현재 메서드인 호출 메서드:
StackFrame frame = new StackFrame(1);
StackFrame에서 메서드 정보를 검색합니다.
var method = frame.GetMethod();
추출 메소드 이름 및 선언 유형:
var name = method.Name; var type = method.DeclaringType;
예
다음 수업을 고려하세요.
public class SomeClass { public void SomeMethod() { // Get the calling method and type StackFrame frame = new StackFrame(1); var method = frame.GetMethod(); var type = method.DeclaringType; var name = method.Name; } }
다른 수업에서:
public class Caller { public void Call() { SomeClass s = new SomeClass(); s.SomeMethod(); } }
Call이 호출되면 변수 이름과 유형이 입력됩니다. SomeClass의 SomeMethod에는 다음 값이 포함됩니다.
.NET 4.5에서 CallerMemberNameAttribute 사용
.NET 4.5 이상에서는 CallerMemberNameAttribute를 사용하는 단순화된 접근 방식이 있습니다.
public class SomeClass { public void SomeMethod([CallerMemberName]string memberName = "") { // Output the calling method name Console.WriteLine(memberName); } }
SomeClass.SomeMethod가 호출되면 memberName에 호출 메서드의 이름이 포함됩니다. .
위 내용은 C# 리플렉션을 사용하여 호출 메서드의 이름과 클래스를 어떻게 얻을 수 있나요?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!