Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Unknown Operator

Status
Not open for further replies.

d1novak

Instructor
Jul 21, 2003
27
0
0
US


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;
----------------------------------------------------------
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top