if isempty(blabla) then
......
.....
is empty is not defined
isempty gives me an error in vb.net code
is there any alternatives available
Printable View
if isempty(blabla) then
......
.....
is empty is not defined
isempty gives me an error in vb.net code
is there any alternatives available
ok found this in threads seems to work a treat
Private Function IsEmpty(ByVal arr As System.Array) As Boolean
Try
Dim n As Integer = UBound(arr)
Catch ex As Exception
IsEmpty = True
End Try
End Function