PostSharp 和 Castle 动态代理有什么区别?
只是想知道这些库之间的主要区别是什么,它们在特性和功能上有何不同。
希望通过谷歌查询能找到更多的信息......
Just wondering what the main differences are between these libraries, how they differ in features and functionality.
Hoping for more information than I could find with a Google query...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
主要区别在于,当 AOP 代码合并到程序中时
,“Postsharp 通过在编译时编织来工作”,
动态代理会在运行时动态生成轻量级 .NET 代理。
请参阅:应用 AOP
The main difference is when the AOP code is incorporated into your program
"Postsharp works by weaving at compile time"
Dynamic Proxy generates lightweight .NET proxies on the fly at runtime.
see: Applying AOP
http://ayende. com/Blog/archive/2007/07/02/7-AOP-in-.Net.aspx 的方法
http://ayende.com/Blog/archive/2007/07/02/7-Approaches-for-AOP-in-.Net.aspx