this question is related to this http://stackoverflow.com/questions/962558/multidimensional-associative-array-in-vb-net
getting the following error.
System.ArgumentException: An item with the same key has already been added. Line 103: AdInsured.Add(dbread.Item("FullName"), New Person(dbread.Item("FullName"), GetAge(dbread.Item("DateOfBirth"))))
Dim AdInsured As New Dictionary(Of String, Person)()
Do While dbread.HasRows
AdInsured.Add(dbread.Item("FullName"), New Person(dbread.Item("FullName"), GetAge(dbread.Item("DateOfBirth"))))
Loop