ICommand奇怪的代码

时间:2017-12-13 13:39:52

标签: c# icommand

我对以下代码有疑问:

public void Destroy()
       {
           this.canExecute = _ => false;
           this.execute = _ => { return; };
       }

我复制/粘贴this code重新使用ICommands, 但我无法弄清楚为什么作者选择这样做。

为什么不呢:

this.canExecute = false;

0 个答案:

没有答案