Can anyone tell me what the => and <= are preforming here?
----------------------------------------------------------
case "Maximum List Price":
decimal maxListPrice = Convert.ToDecimal(this.stateField);
this.productView.Filter = (o) =>
{
var product = o as Product;
return product.ListPrice <= maxListPrice;
};
break;
----------------------------------------------------------