Castle动态代理是否可以拦截值类型?
我有一个问题,找不到答案,如果可以通过 Castle 动态代理拦截 C# 中的值类型,有什么提示吗?我想用 INotifyChanged 接口拦截 IDictionary。当演示者更改模型时,我需要它来更新视图。仅为了制作接口而在对象中装箱十进制不是好主意......也许有人知道如何引入值类型?
感谢所有的答案
I have a problem and can not find answer and any tip if it is possible to intercept value types in C# by Castle dynamic proxy? I want to intercept IDictionary with INotifyChanged interface. I need this to update view when presenter is changing model. Boxing decimal in object only for making interface is not good idea... maybe somebody have idea how to intrcept value types?
Thanks to all answers
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不,这是不可能的。即使是这样,它也不会起作用,因为原始类型是不可变的。
no it is not possible. Even if it was it would not work because primitive types are immutable.