Может кто-нибудь объяснить, что делает этот код С#?
// launch the camera capture when the user touch the screen
this.MouseLeftButtonUp += (s, e) => new CameraCaptureTask().Show();
// this static event is raised when a task completes its job
ChooserListener.ChooserCompleted += (s, e) =>
{
//some code here
};
Я знаю, что CameraCaptureTask является классом и имеет общедоступный метод Показать(). Что это за событие? что (s, e)
?