0

我有一个动态类型对象,我想从对象中获取每个属性的所有值。

dynamic row = ....

我正在使用property.GetValue(row, null)抛出一个 RuntimeBinderException。如何检索此值?

4

1 回答 1

1

这将遍历所有公共属性

    dynamic something = new {id = "1", name = "name"};
    Type type = something.GetType();
    var properties = type.GetProperties();
    foreach (var property in properties)
    {
        var value = property.GetGetMethod().Invoke(something, null);
        Console.WriteLine(string.Format("{0}:{1}", property.Name, value));
    }
于 2012-08-07T16:51:56.170 回答