摘要: Imports System.ReflectionModule Module1 Sub Main() Dim p As New Person p.Name = "cuishengli" p.Age = 30 p.Tall = 1.78 p.Birth = "1978-09-18" Console.WriteLine("dict:") Dim dict = GetInformation(p) For Each i In dict Console.WriteLine("key={0};Value={1}", i.Key 阅读全文