首页 > Web开发 > 详细

[VB.NET]Dictionary类

时间:2014-09-06 22:30:13      阅读:412      评论:0      收藏:0      [点我收藏+]

字典类是一个很重要的类,尤其是对于数据的简单存储,查询,和处理。

 

废话不多说,简单记录下我探索的结果。

 1、

Dictionary内部索引是0基的。也就是说第一个元素的序号是0.

2、

 1 Public Class DictionaryTryMain
 2 
 3     Private Sub btnClassBase_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnClassBase.Click
 4         Dim dicTest As New Dictionary(Of String, String)
 5         dicTest.Add("age", "24")
 6         dicTest.Add("love", "MJ、CM、VB、.NET")
 7         dicTest.Add("music", "Michael Jackson")
 8         dicTest.Add("fun", "Computer Programming")
 9         dicTest.Add("loc", "Hubei Wuhan")
10         Console.WriteLine(String.Format("Length Of Dictionary:{0}", dicTest.Count))
11         Console.WriteLine(String.Format("Exist Key(""age"")?={0}", dicTest.ContainsKey("age")))
12         Console.WriteLine(String.Format("Content Of Key ""age"":{0}", dicTest.Item("age")))
13     End Sub
14 End Class

 

[VB.NET]Dictionary类

原文:http://www.cnblogs.com/sunsoftresearch/p/3959823.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!