标签:style blog color io ar for 数据 div cti
字典类是一个很重要的类,尤其是对于数据的简单存储,查询,和处理。
废话不多说,简单记录下我探索的结果。
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
标签:style blog color io ar for 数据 div cti
原文地址:http://www.cnblogs.com/sunsoftresearch/p/3959823.html