C# 遍历全部公共属性的思路

string url = "https://www.baidu.com/";
Uri u = new Uri(url);
//MessageBox.Show(u.GetType().GetProperties()[0].ToString());
foreach (System.Reflection.PropertyInfo p in u.GetType().GetProperties())
{
textBox1.Text += p.Name + ":" + p.GetValue(u, null) + "\r\n";

}

posted @ 2015-10-24 21:41  六十七度老白干  阅读(222)  评论(0编辑  收藏  举报