When checking if a integer is the same or above a current number.. so I type
if (5 => 6) { //Bla }
but it shows this as a error. Why? Isn't it exactly the same as
if (5 >= 6) { //Bla }
|
|
Well simply because it isn't.
I do agree it is annoying. Before lamda expressions I used to get it wrong sometimes. Now I always know that one ( |
|||||
|
|
Because the operator is The writers of the language could have chosen either syntax, but had to choose one. Having two operators meaning the same thing would be confusing at best. Also |
|||
|
|
|
Because
Besides, you don't say "equal to or greater than", which is what |
|||||||||||
|
|
Why should it be? =! is not the same as != either. This is a part of the languages syntax. In this specific case, => is also used for lambda expressions so it has another purpose. |
|||
|
|
|
The confusion here is that you're assuming >= is two operators smooshed together. In fact, it's only one operator with two characters, much the same as tons of other operators (+=, *=, -=, etc). |
|||
|
|
|
Because
The syntax is such that you have to use |
|||
|
|
|
In C# the greater than or less than sign must come BEFORE the equal sign. It is just part of the syntax of the language. |
|||
|
|
|
No, it is not this same. Correct operator in c# is >= for comparission and => for lambda expression. |
|||
|
|
|
@Barry's answer is probably the most insightful of the lot here. A single operator does not mean a single character; the fact that I suppose if you really wanted to you could override it so that both |
|||
|
|