String.IsNullOrWhiteSpace(valuefromDB) throws error if valuefromDB is dbnull.value
Is that correct??
I thought of this function will also handles the dbnull.value
|
Is that correct?? I thought of this function will also handles the
| ||||
feedback
|
|
If you had Option Strict On your code would never have compiled, because the The IsNull in the name You can either check for both Hope this helps | |||
|
feedback
|
|
| |||
|
feedback
|
|
Yes is correct.. From msdn: Indicates whether a specified string is Nothing, empty, or consists only of white-space characters. Nothing is not null, so your string can be nothing or empty, but a dbnull is another different value for it :). | |||
|
feedback
|