获取所有字段的值:
public void PrintProperties(Object obj)
{
Type type = obj.GetType();
foreach( PropertyInfo p in type.GetProperties())
{
Console.Write(p.GetValue());
}
}
获取所有字段的值:
public void PrintProperties(Object obj)
{
Type type = obj.GetType();
foreach( PropertyInfo p in type.GetProperties())
{
Console.Write(p.GetValue());
}
}