从字符串中获取C#动态对象的属性值(反射?)

时间:2011-12-25 20:59:32

标签: c# reflection .net-4.0

假设我有一个动态变量:

dynamic d = *something*

现在,某些创建了d的属性,另一方面我从字符串数组创建属性:

string[] strarray = { 'property1','property2',..... }

我事先不知道属性名称。

如何在代码中创建d并从数据库中提取strarray,我可以获取值吗?

我想获得d.property1 , d.property2

我看到该对象有一个_dictionary内部字典,其中包含键和值,我该如何检索它们?

10 个答案:

答案 0 :(得分:91)

我不知道动态创建的对象是否有更优雅的方式,但使用普通的旧反射应该有效:

var nameOfProperty = "property1";
var propertyInfo = myObject.GetType().GetProperty(nameOfProperty);
var value = propertyInfo.GetValue(myObject, null);
如果GetProperty的类型不包含具有此名称的公共属性,

null将返回myObject


编辑:如果对象不是“常规”对象,而是实现IDynamicMetaObjectProvider的对象,则此方法不起作用。请改为查看这个问题:

答案 1 :(得分:25)

这将为您提供动态变量中定义的所有属性名称和值。

dynamic d = { // your code };
object o = d;
string[] propertyNames = o.GetType().GetProperties().Select(p => p.Name).ToArray();
foreach (var prop in propertyNames)
{
    object propValue = o.GetType().GetProperty(prop).GetValue(o, null);
}

答案 2 :(得分:20)

希望这会对你有所帮助:

public static object GetProperty(object o, string member)
{
    if(o == null) throw new ArgumentNullException("o");
    if(member == null) throw new ArgumentNullException("member");
    Type scope = o.GetType();
    IDynamicMetaObjectProvider provider = o as IDynamicMetaObjectProvider;
    if(provider != null)
    {
        ParameterExpression param = Expression.Parameter(typeof(object));
        DynamicMetaObject mobj = provider.GetMetaObject(param);
        GetMemberBinder binder = (GetMemberBinder)Microsoft.CSharp.RuntimeBinder.Binder.GetMember(0, member, scope, new CSharpArgumentInfo[]{CSharpArgumentInfo.Create(0, null)});
        DynamicMetaObject ret = mobj.BindGetMember(binder);
        BlockExpression final = Expression.Block(
            Expression.Label(CallSiteBinder.UpdateLabel),
            ret.Expression
        );
        LambdaExpression lambda = Expression.Lambda(final, param);
        Delegate del = lambda.Compile();
        return del.DynamicInvoke(o);
    }else{
        return o.GetType().GetProperty(member, BindingFlags.Public | BindingFlags.Instance).GetValue(o, null);
    }
}

答案 3 :(得分:5)

string json = w.JSON;

var serializer = new JavaScriptSerializer();
serializer.RegisterConverters(new[] { new DynamicJsonConverter() });

DynamicJsonConverter.DynamicJsonObject obj = 
      (DynamicJsonConverter.DynamicJsonObject)serializer.Deserialize(json, typeof(object));

现在obj._Dictionary包含字典。完美!

此代码必须与。一起使用 Deserialize JSON into C# dynamic object? +在那里的代码中将_dictionary变量从“private readonly”变为public

答案 4 :(得分:4)

您是否看到 ExpandoObject 类?

直接来自MSDN description:“表示一个对象,其成员可以在运行时动态添加和删除。”

有了它,您可以编写如下代码:

dynamic employee = new ExpandoObject();
employee.Name = "John Smith";
((IDictionary<String, Object>)employee).Remove("Name");

答案 5 :(得分:3)

如果d由Newtonsoft创建,您可以使用它来读取属性名称和值:

    foreach (JProperty property in d)
    {
        DoSomething(property.Name, property.Value);
    }

答案 6 :(得分:0)

认为这可能会对将来有所帮助。

如果您已经知道属性名称,则可以执行以下操作:

[HttpPost]
[Route("myRoute")]
public object SomeApiControllerMethod([FromBody] dynamic args){
   var stringValue = args.MyPropertyName.ToString();
   //do something with the string value.  If this is an int, we can int.Parse it, or if it's a string, we can just use it directly.
   //some more code here....
   return stringValue;
}

答案 7 :(得分:0)

您可以尝试:

d?.property1 , d?.property2

我已经测试并使用.netcore 2.1

答案 8 :(得分:0)

您可以使用“ dynamicObject.PropertyName.Value”直接获取动态属性的值。

示例

d.property11.Value

答案 9 :(得分:-1)

使用以下代码获取动态对象属性的名称和值。

dynamic d = new { Property1= "Value1", Property2= "Value2"};

var properties = d.GetType().GetProperties();
foreach (var property in properties)
{
    var PropertyName=property.Name; 
//You get "Property1" as a result

  var PropetyValue=d.GetType().GetProperty(property.Name).GetValue(d, null); 
//You get "Value1" as a result

// you can use the PropertyName and Value here
 }