In VB.NET, what is the difference between
if foo is Nothing Then
doStuff()
End If
and
if foo=Nothing Then
doStuff()
End If
Update I received the following answer:
foo is Nothingsimply checks iffoois not assigned to any reference.foo = Nothingchecks if the reference held byfoois equal tonothing.
After running the three statements,
Dim foo as Object
Dim bar as Integer
foo = bar
foo is Nothing evaluates to false and foo = Nothing evaluates to true.
However, if bar is declared as an Object and not initialized, then foo is Nothing and foo = Nothing both evaluate to true! I think this is because Integer is a value type and Object is a reference type.