275

我想在运行时向 ExpandoObject 动态添加属性。因此,例如添加一个字符串属性调用 NewProp 我想写一些类似的东西

var x = new ExpandoObject();
x.AddProperty("NewProp", System.String);

这很容易吗?

4

4 回答 4

570
dynamic x = new ExpandoObject();
x.NewProp = string.Empty;

或者:

var x = new ExpandoObject() as IDictionary<string, Object>;
x.Add("NewProp", string.Empty);
于 2011-02-08T21:05:36.333 回答
27

正如Filip在这里解释的那样-http: //www.filipekberg.se/2011/10/02/adding-properties-and-methods-to-an-expandoobject-dynamicly/

您也可以在运行时添加方法。

x.Add("Shout", new Action(() => { Console.WriteLine("Hellooo!!!"); }));
x.Shout();
于 2015-10-15T19:37:30.560 回答
21

这是一个示例帮助类,它转换一个对象并返回一个具有给定对象的所有公共属性的 Expando。

public static class dynamicHelper
    {
        public static ExpandoObject convertToExpando(object obj)
        {
            //Get Properties Using Reflections
            BindingFlags flags = BindingFlags.Public | BindingFlags.Instance;
            PropertyInfo[] properties = obj.GetType().GetProperties(flags);

            //Add Them to a new Expando
            ExpandoObject expando = new ExpandoObject();
            foreach (PropertyInfo property in properties)
            {
                AddProperty(expando, property.Name, property.GetValue(obj));
            }

            return expando;
        }

        public static void AddProperty(ExpandoObject expando, string propertyName, object propertyValue)
        {
            //Take use of the IDictionary implementation
            var expandoDict = expando as IDictionary<String, object>;
            if (expandoDict.ContainsKey(propertyName))
                expandoDict[propertyName] = propertyValue;
            else
                expandoDict.Add(propertyName, propertyValue);
        }
    }

用法:

//Create Dynamic Object
dynamic expandoObj= dynamicHelper.convertToExpando(myObject);
    
//Add Custom Properties
dynamicHelper.AddProperty(expandoObj, "dynamicKey", "Some Value");
于 2017-01-23T15:28:03.600 回答
0

我认为这会添加所需类型的新属性,而无需设置原始值,例如在类定义中定义属性时

var x = new ExpandoObject();
x.NewProp = default(string)
于 2020-03-30T00:15:22.850 回答