gpt4 book ai didi

c# - 如何在静态上下文中获取封闭类型的名称?

转载 作者:太空宇宙 更新时间:2023-11-03 20:50:38 25 4
gpt4 key购买 nike

假设你有:

class Foo
{
static string f = nameof(Foo);
}

这行得通,但我不喜欢在 nameof 中有明确的类型名称。在实例上下文中,我可以使用 this.GetType().Name,但是如何在静态上下文中获取类型名称(没有像上面那样明确引用类型)?

最佳答案

试试这个:

class Foo
{
static string f = System.Reflection.MethodBase.GetCurrentMethod().DeclaringType.Name;
}

关于c# - 如何在静态上下文中获取封闭类型的名称?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55741229/

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