I have seen some code which uses the <=
operator. Can you explain what is the use of having lambda in reverse direction?
views:
285answers:
3
+14
A:
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.
Dave Markle
2009-12-03 10:23:43
yes i do need coffee. Some times this may happen.
2009-12-03 10:25:44
+3
A:
I think it is only used as 'smaller than or equal'. As in
if(i <= 5)
{
// ..
}
Razzie
2009-12-03 10:24:19