just exploring c# 4. Trying to get my head around all this dynamic stuff. Sorry if this question is silly, no experience in this domain.

If I have an ExpandoObject and want to add public properties (with get and set) to it at runtime, how would I go about doing it?

For example, I have a documentTemplate and a document, which has a property pointing towards the documentTemplate. This documentTemplate has got some tag Titles (eg. Capabilities developed among students), which should be addressed while making the document (eg. Concentration, memory etc.). So as soon as the template is set in the document, I want to create a class, which has properties with same names as the tag titles in the Template, and then using some UI element, such as the PropertyGrid, I can have the user fill in tag values against the tag Titles.

Thanks for reading!

link|improve this question

1  
Just wanted to add that I read the dead-tree edition of this article on ExpandoObject: msdn.microsoft.com/en-us/magazine/ff796227.aspx Not sure if it answers your questions, but it was a great primery for me. – Yoopergeek Aug 5 '10 at 18:37
feedback

5 Answers

up vote 23 down vote accepted

Came up on this question while researching the expando concept. I had the same thought about how it might be possible to add members that are defined outside of code. Came up with this sample:

using System;
using System.Collections.Generic;
using System.Dynamic;

class Program
{
    static void Main()
    {
        dynamic expando = new ExpandoObject();
        var p = expando as IDictionary<String, object>;

        p["A"] = "New val 1";
        p["B"] = "New val 2";

        Console.WriteLine(expando.A);
        Console.WriteLine(expando.B);
    }
}

The point of this sample is that the members A and B are defined as string literals (hard coded) in code and added via ExpandoObject's IDict interface. We test for their existence and values (and prove the concept) by accessing them directly and outputting to console.

link|improve this answer
Exactly what I was looking for. Thnx. ¦voteup¦ – gsharp Oct 5 '10 at 15:07
wow, best bit of learning today! – TheVillageIdiot Mar 2 at 16:47
feedback

Yes, ExpandoObject is very much designed to dynamically add properties to a "property bag". The notion of giving such a property an getter and setter is not supported however. Maybe that's clear if you think about it a bit: it wouldn't be a dynamic property anymore if you already know what the getter and setter should do. The closest you could get is implementing the INotifyPropertyChanged event so you can detect changes. Some sample code:

using System;
using System.Dynamic;
using System.ComponentModel;

class Program {
  static void Main(string[] args) {
    dynamic obj = new ExpandoObject();
    obj.test = 42;     // Add a property
    Console.WriteLine(obj.test);

    var inpc = (INotifyPropertyChanged)obj;
    inpc.PropertyChanged += inpc_PropertyChanged;
    obj.test = "foo";
    Console.ReadLine();
  }

  static void inpc_PropertyChanged(object sender, PropertyChangedEventArgs e) {
    Console.WriteLine("'{0}' property changed", e.PropertyName);
  }

}
link|improve this answer
Thanks for the explanation and code Hans. However, my query is slightly different. I want to know that is it possible to add the "test" property at runtime? I mean we don't even know the property name at design time. Something like: obj.SetProperty(stringVariable) = anotherStringVariable. – virtualmic Jun 4 '10 at 17:23
Erm, no. Why don't you simply use a Dictionary<string, dynamic>? – Hans Passant Jun 4 '10 at 17:32
So that I can easily bind to Windows Forms UI – virtualmic Jun 5 '10 at 3:15
1  
Just wanted to add, ExpandoObject implements Dictionary<string, object>... – Yoopergeek Aug 5 '10 at 18:37
feedback

It's possible to add delegate properties to an ExpandoObject, which then act (almost) just like methods. e.g.,

dynamic obj = new ExpandoObject();
obj.GetDocumentTemplate = () => { ... };
...
obj.GetDocumentTemplate(); // invokes delegate
link|improve this answer
feedback

I just discovered this interesting fact: XAML Bindings to an ExpandoObject will also create the properties the binding is trying to access.

I still need more creativity to find out what this could be good for. Dynamic object creation on the UI? sounds cool :D I will try something out.

link|improve this answer
feedback

The answers so far cover the basics quite well, but I felt this MSDN Magazine article was worth sharing as well:

http://msdn.microsoft.com/en-us/magazine/ff796227.aspx

It covers some examples of using dynamic XML input to dynamically create and use ExpandoObjects.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.