财产.GetValue(dynamictype,null) 抛出 RuntimeBinderException.
本文关键字:抛出 RuntimeBinderException null GetValue dynamictype 财产 | 更新日期: 2024-11-06 19:45:16
我有一个动态类型对象,我想从该对象中获取每个属性的所有值。
dynamic row = ....
我正在使用property.GetValue(row, null)
抛出一个运行时绑定器异常。如何检索此值?
这将遍历所有公共属性:
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));
}