‘=>’是什么在这个声明中表示?
del = new SomeDelegate(() => SomeAction());
以上声明是否与此相同?
del = new SomeDelegate(this.SomeAction);
谢谢.
del = new SomeDelegate(() => SomeAction());
以上声明是否与此相同?
del = new SomeDelegate(this.SomeAction);
谢谢.