vb.net null 如何判断字符串为空

vb.net null 如何判断字符串为空
2025-01-29 08:23:17
推荐回答(4个)
回答1:

不知道你说的空是哪种意思?

有两种说法,一种是String.Empty,例如
Dim s As String = String.Empty 等同于 Dim s As String = ""
这种情况下直接If s = "" Then就可以判断是不是空.

还有一种是Nothing,必须要用If IsNothing(s) Then来判断.

回答2:

Dim myString as String
if myString="" then

else
非空
end if

回答3:

dim a as STRING
if a is VBSTRINGNULL then
```

回答4:

null在vb.net中为nothing