(e, v) =>
C# 中的语法是什么意思?
例如,
TreeViewModel root = TreeViewModel.initializeRoot(parentStatus, statuses);
root.PropertyChanged += (e, v) => updateConditions();
我知道我正在注册以监听根对象的属性更改。而且,如果发生这样的事件,那么我将调用该updateConditions()
方法。但是,(e, v) =>
介于两者之间的是什么?
而且,有没有办法将更改的属性作为参数发送到updateConditions()
?