如何获取当前班级?静态方法中的名称?

发布于 2025-01-06 07:57:24 字数 52 浏览 1 评论 0原文

通常我可以调用 this.GetType(),但我无法在静态方法中访问它。我们如何检查呢?

Normally I can call this.GetType(), but I can't access this in a static method. How can we check it?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

萌辣 2025-01-13 07:57:24
new StackFrame().GetMethod().DeclaringType

MethodBase.GetCurrentMethod().DeclaringType

new StackTrace(true).GetFrame(<frame index>).GetMethod() //e.g. <frame index> = 0
new StackFrame().GetMethod().DeclaringType

or

MethodBase.GetCurrentMethod().DeclaringType

or

new StackTrace(true).GetFrame(<frame index>).GetMethod() //e.g. <frame index> = 0
爱,才寂寞 2025-01-13 07:57:24

使用typeof

string className = typeof(MyClass).Name;

Use typeof:

string className = typeof(MyClass).Name;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文