我如何检查ServiceControllerStatus是否为NULL /值与我的代码不存在如下:
Dim controller As New ServiceController("value")
If controller.Status = ServiceControllerStatus.Running Then
ListBox1.Items.Add("Value Service running")
Else
Label2.Text = ""
End If
是否有"空或NULL"我能用的功能吗?
由于
答案 0 :(得分:1)
你的意思是:
If controller.Status = Nothing Then