Users Pricing

forum

home / developersection / forums / lambda function using unknown parameter

Lambda Function Using Unknown Parameter

Anonymous User 2652 09 Feb 2014

I see PRISM declaring the following constructor, and I don't understand what's that "o" being used with the lambda function that serves as the second parameter when the base constructor is called:

public DelegateCommand(Action<T> executeMethod)

    : this(executeMethod, (o)=>true)

{           

}

I'd appreciate an explanation.


I am a content writter !


1 Answers