C# lambda expression reverse direction <=

Solution 1:

That's just less than or equal. I don't think C# lambdas work like that. It's too early in the morning. You need coffee.

Solution 2:

That's not a lambda at all. That's less than or equal to

(Except when it's actually a reverse lambda)

Solution 3:

I think it is only used as 'smaller than or equal'. As in

if(i <= 5)
{
 // ..
}