Nothing after a New, is it possible?
Dim myObj As MyClass = Nothing
myObj = New MyClass(params)
If myObj Is Nothig Then
' is it possible?
End If
Is there a theoretical possibility that the constructor returns a null (Nothing) Object?
Say, to set Me = Nothing in the constructor? Or if an exception is thrown in constructor, what happens in the catch with the object?
Or in the last constructor line I pass by reference "Me" to a method and this method sets that reference to Nothing?
newwill ever returnnull/nothing– asawyer Jan 22 at 16:23Nothingandnullare rather different). – Tim Schmelter Jan 22 at 16:45