C#通過反射獲取物件屬性,列印所有欄位屬性的值

weixin_34119545發表於2017-12-29

 獲取所有欄位的值:

public void PrintProperties(Object obj)
{
    Type type = obj.GetType();
    foreach( PropertyInfo p in type.GetProperties())
    {
        Console.Write(p.GetValue());
    }
}    

 

相關文章