C # / Lambda: К чему относится параметр в следующем примере?

Я смотрю на код из здесь

/// 
/// Returns the command that, when invoked, attempts
/// to remove this workspace from the user interface.
/// 
public ICommand CloseCommand
{
    get
    {
        if (_closeCommand == null)
            _closeCommand = new RelayCommand(param => this.OnRequestClose());

        return _closeCommand;
    }
}

что означает param в param => this.OnRequestClose () ?

5
задан Jiew Meng 6 October 2010 в 22:30
поделиться