前端之家收集整理的这篇文章主要介绍了
vb.net中Hashtale操作,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
首先定义一个hashtable
Dim hstl As New Hashtable
hstl.Add(key,value) 'java是用.putMS开始全面模仿java
这说说vb.net中的hashtable基本用法:
添加值:hstl.add(key,value)
通过key取值:hstl.Item(key).ToString
判断是否含有Key:ContainsKey(key)
判断是否含有value:ContainsValue(value)
遍历hashtable:
Dim de As DictionaryEntry '泛型类
For Each de Inhstl
console.write(de.key & de.value)
Next de
hashtable不支持通过value取key.
原文链接:https://www.f2er.com/vb/257471.html