What is exactly the += ( s, e ) in the code?
+= ( s, e )
example:
this.currentOperation.Completed += ( s, e ) => this.CurrentOperationChanged();
This codes adds an event listener in form of a Lambda expression. s stands for sender and e are the EventArgs. Lambda for
s
e
private void Listener(object s, EventArgs e) { }