以文本方式查看主题

-  Foxtable(狐表)  (http://foxtable.com/bbs/index.asp)
--  专家坐堂  (http://foxtable.com/bbs/list.asp?boardid=2)
----  怎样判断字典没有值  (http://foxtable.com/bbs/dispbbs.asp?boardid=2&id=132093)

--  作者:zhaohj611718
--  发布时间:2019/3/13 17:37:00
--  怎样判断字典没有值
怎样判断字典没有值
--  作者:zhaohj611718
--  发布时间:2019/3/13 17:39:00
--  
我新建了字典Dim zd As New Dictionary(Of Integer, String) 我怎样判断它是否写进了值
--  作者:zhaohj611718
--  发布时间:2019/3/13 17:57:00
--  
Dim zd As New Dictionary(Of Integer, String)
If zd(0) IsNothing = True Then
       MessageBox.Show("没有值!", "提示")
End If
这样报 应为 If zd(0) IsNothing = True Then语句结束

--  作者:有点甜
--  发布时间:2019/3/13 18:23:00
--  
Dim zd As New Dictionary(Of Integer, String)
If zd.count = 0Then
       MessageBox.Show("没有值!", "提示")
End If

--  作者:zhaohj611718
--  发布时间:2019/3/13 18:50:00
--  
谢谢