以文本方式查看主题

-  Foxtable(狐表)  (http://foxtable.com/bbs/index.asp)
--  专家坐堂  (http://foxtable.com/bbs/list.asp?boardid=2)
----  如何修改字典中的值?  (http://foxtable.com/bbs/dispbbs.asp?boardid=2&id=186249)

--  作者:ygg8310
--  发布时间:2023/4/16 19:29:00
--  如何修改字典中的值?
Dim zd As New Dictionary(Of String, Integer)
zd.Add("苹果", 1)
苹果的值+1这个代码怎么写?
想实现统计各商品的销售量

--  作者:有点蓝
--  发布时间:2023/4/16 20:25:00
--  
zd("苹果") = zd("苹果") + 1