记录 .NET Func<> 的最佳方式是什么?

发布于 2024-10-16 19:05:58 字数 96 浏览 2 评论 0 原文

我有一个接受 Func 的通用方法,我想记录传递到该方法中的 Func。传入的 func 上有哪些属性可以帮助我了解它正在做什么?

I have a generic method that accepts a Func<int> and I would like to log the Func that is passed into the method. What properties are available on the passed in func to help me understand what it is doing?

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

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

发布评论

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

评论(2

画中仙 2024-10-23 19:05:58

您可以使用 func.Method.Name 记录方法名称,MethodInfo 类中还有一些其他有用的属性。但是,如果 Func 是匿名的,那么您将不会获得非常有用的名称。

You can log the method name with func.Method.Name, and there's some other useful properties in the MethodInfo class. However, if the Func is anonymous, then you will not get a very helpful name.

池予 2024-10-23 19:05:58

正如 Jaroslav Jandek 指出的,通过使用 Expression> 我可以获取有关传入方法的更多信息。具体来说:我发现 body 属性具有字符串形式的匿名方法签名。

http://msdn. microsoft.com/en-us/library/system.linq.expressions.lambdaexpression.body.aspx

As Jaroslav Jandek pointed out by using Expression<Func<T>> I can get more information about the method being passed in. Specifically: I found that the body property has the anonymous method signature as a string.

http://msdn.microsoft.com/en-us/library/system.linq.expressions.lambdaexpression.body.aspx

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