gpt4 book ai didi

c# - 如何找到执行函数的对象类型和名称?

转载 作者:行者123 更新时间:2023-11-30 19:59:51 25 4
gpt4 key购买 nike

考虑以下代码:

class A
{
public void Foo()
{
string thisFunction = // get the name of the executing function (Foo)
string thisType = // get the name of the object type (A)
Log.PrintLog(thisFunction, thisType);
}
}

public static class Log
{
public static void PrintLog(string function, string type)
{
Console.WriteLine("Call from function {0}, type {1}", function, type);
}
}

如何找到执行函数的名称和对象类型?除了使用 [CallerFilePath] 和 [CallerMemberName] 之外还有其他解决方案吗?

最佳答案

 string thisFunction = Reflection.MethodBase.GetCurrentMethod().Name; 
string thisType = this.GetType().Name;

关于c# - 如何找到执行函数的对象类型和名称?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22661016/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com