0
What the difference between not equal != and <> ?
Courious and for knowledge
3 ответов
+ 6
Not equal is for objects that describe when they are equal to another object.
<> needs a further method to compare.
example:
Two Strings are not equal if one index exists where characters are different. But this says nothing about the order.
+ 4
sure
0
Can we use like this?
If (i%2 <> 0).......
Instead
If (i%2 != 0).......