vote up 0 vote down star

Hi all. After two years of C#, I'm now back to VB.net because of my current job. In C#, I can do a short hand testing for null or false value on a string variable like this:

if(!String.IsNullOrEmpty(blah))
{
   ...code goes here
}

however I'm a little confused about how to do this in VB.net.

if Not String.IsNullOrEmpty(blah) then
   ...code goes here
end if

Does the above statement mean if the string is not null or empty? Is the Not keyword operate like the C#'s ! operator?

flag

42% accept rate

4 Answers

vote up 1 vote down

In the context you show, the VB Not keyword is indeed the equivalent of the C# ! operator. But note that the VB Not keyword is actually overloaded to represent 2 C# equivalents:

  • logical negation: !
  • bitwise complement: ~

For example, the following 2 lines are equivalent:

C#: useThis &= ~doNotUse; 
VB: useThis = useThis And (Not doNotUse)
link|flag
vote up 3 vote down

Not is exactly like ! (in the context of Boolean. See RoadWarrior's remark for its semantics as one's complement in bit arithmetic). There's a special case in combination with the Is operator to test for reference equality:

If Not x Is Nothing Then ' … '
' is the same as '
If x IsNot Nothing Then ' … '

is equivalent to C#'s

if (x != null) // or, rather, to be precise:
if (object.ReferenceEquals(x, null))

Here, usage of IsNot is preferred. Unfortunately, it doesn't work for TypeOf tests.

link|flag
vote up 0 vote down

Seconded. They work identically. Both reverse the logical meaning of the expression following the !/not operator.

link|flag
They act in the same way, but they're definitely not the same. 'Not' in VB is overloaded to represent both logical negation and bitwise complement. – RoadWarrior Nov 10 '08 at 21:57
vote up 6 vote down

Yes they are the same

link|flag
They act the same way, but they're definitely not the same. 'Not' in VB is overloaded to represent both logical negation and bitwise complement. – RoadWarrior Nov 10 '08 at 21:56
Thanks, I did not know that. I have not used bitwise complement operators in vb.net or C# – Ruben Nov 10 '08 at 22:22

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.