This is the main expression of lambda .
UIView.Animate (0.25, animation: () => { this.datePicker.Alpha = 0.0f; }, completion: () => { this.datePicker.Hidden = true; } );
Or, since you have only one statement in your body, you can shorten it even further to
UIView.Animate (0.25, animation: () => this.datePicker.Alpha = 0.0f, completion: () => this.datePicker.Hidden = true );
source share