Reputation: 4163
I can't google it because google removes <> from the search even when surrounding it with quotes. So what does <> do in VB6?
Upvotes: 2
Views: 8049
Reputation: 9399
It's the inequality operator. Think of it as C-like languages version of a !=
.
So 1 <> 2
evaluates to true, but 1 <> 1
does not.
Upvotes: 12