Aaron Hiniker
Aaron Hiniker

Reputation: 4163

What does <> mean in visual basic?

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

Answers (1)

Geeky Guy
Geeky Guy

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

Related Questions