我经常写这样的代码:
MyObject property;
MyObject Property
{
get { return property; }
set {
if (property != null)
property.Changed -= property_Changed; // unsubscribe from the old value
property = value;
property.Changed += property_Changed; // subscribe to the new value
}
}
我正在寻找一种优雅的方式来自动取消订阅。 有什么想法吗?
答案 0 :(得分:2)
这就像你想要实现的想法一样优雅。当然,你有一个逻辑错误,value
在传入时可能为null,因此property.Changed += property_Changed
会爆炸。
基本上,如果您指定了一个新对象,则需要取消订阅旧元素的事件并附加到新元素事件。
答案 1 :(得分:2)
可能是这样的,如果你真的需要取消订阅/订阅每个房产变更:
MyObject Property
{
get { return property; }
set {
//unsubscribe always, if it's not null
if(property !=null)
property.Changed -= property_Changed;
//assign value
property = value;
//subscribe again, if it's not null
if (property != null)
property.Changed += property_Changed;
}
}
答案 2 :(得分:1)
也许使用Extensions Methods可能就是您要找的。 p>
你可以尝试这样的事情。
private MyProperty property;
public MyProperty Property
{
get { return property; }
set { property.SubPubValue(value, property_Changed); }
}
private static void property_Changed(object sender, PropertyChangedEventArgs e)
{
throw new NotImplementedException();
}
public static class Extensions
{
public static void SubPubValue<T>(this T value, T setValue, PropertyChangedEventHandler property_Changed) where T : MyProperty
{
if (setValue != null)
value.PropertyChanged -= property_Changed;
value = setValue;
if (setValue != null)
value.PropertyChanged += property_Changed;
}
}