为什么以下代码无法在VB.NET中编译?
Dim strTest As String
If (strTest.IsNullOrEmpty) Then
MessageBox.Show("NULL OR EMPTY")
End if
最佳答案
IsNullOrEmpty是“共享的”,因此您应该这样使用:
If String.IsNullOrEmpty(strTest) Then
关于.net - 如何在VB.NET中使用IsNullOrEmpty?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/13134534/