Variable auf Gültigkeit überprüfen

' Funktion zum füllen von DataSet-Elementen
Public Function FillDataSet(ByRef dsGrid As DataSet) As Boolean
    Dim bRetVal As Boolean = False

    ' Wenn dsGrid existiert
    If Not IsNothing(dsGrid) Then
        dsGrid.Clear()

        ...
    End If

    Return bRetVal
End Function