web-dev-qa-db-ja.com

ExpandoObjectにプロパティを動的に追加する

実行時にプロパティをExpandoObjectに動的に追加したいと思います。たとえば、NewPropという文字列プロパティ呼び出しを追加するには、次のように記述します。

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

これは簡単に可能ですか?

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

代わりに:

var x = new ExpandoObject() as IDictionary<string, Object>;
x.Add("NewProp", string.Empty);
436
Stephen Cleary

ここで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();
23
Himanshu Patel

以下は、オブジェクトを変換し、指定されたオブジェクトのすべてのパブリックプロパティを含む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;
                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");
11
Johannes