Cita:
Iniciado por ramiroli tenes que usar "Is" en vez de "="
If objetodeclase Is Nothing Then
objetodeclase= New Clase()
End If
Ramiroli tiene razón, también puedes usar la función IsNothing
Código Vb.Net:
Ver originalIf Not IsNothing(objetodeclase) Then
operaciones()
End If