0
我有一個動態類型對象,我想從對象中獲取每個屬性的所有值。property.GetValue(dynamictype,null)throw RuntimeBinderException
dynamic row = ....
我正在使用property.GetValue(row, null)
拋出一個RuntimeBinderException。 如何檢索此值?
我有一個動態類型對象,我想從對象中獲取每個屬性的所有值。property.GetValue(dynamictype,null)throw RuntimeBinderException
dynamic row = ....
我正在使用property.GetValue(row, null)
拋出一個RuntimeBinderException。 如何檢索此值?
這會遍歷所有直通公共性能:
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-07 16:26:23