B
Bob
Hi,
I defined in a class a function which inserts records into a table. There is
no return.
I defined it first like this:
Public Shared Function myfunction(ByVal param1 As Integer) As Boolean
.....
return true
end function
and then without As Boolean:
Public Shared Function myfunction(ByVal param1 As Integer)
.....
end function
But i cant' see any difference between both.
What's the best way to do: with or without As Boolean?
Thanks
Bob
I defined in a class a function which inserts records into a table. There is
no return.
I defined it first like this:
Public Shared Function myfunction(ByVal param1 As Integer) As Boolean
.....
return true
end function
and then without As Boolean:
Public Shared Function myfunction(ByVal param1 As Integer)
.....
end function
But i cant' see any difference between both.
What's the best way to do: with or without As Boolean?
Thanks
Bob