方法属性对方法边界的访问
在自定义方法属性中,有什么方法可以访问该方法并在方法体之前执行一些代码吗?并在方法体的末尾?
提前致谢。
in a custom method attribute is there is any way to access the method and execute some code before the method body ? and at the end of the method body ?
thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要寻找的关键字是面向方面编程(AOP)。一种可用于执行您想要的操作的实现是 PostSharp。
The keyword to look for is Aspect oriented programming (AOP). One implementation that can be used to do what you want is PostSharp.