Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

In TagBuilder and other classes I can write something like:

var tr = new TagBuilder("HeaderStyle"){InnerHtml = html, [IDictionary Attributes]}

but I don't know how to pass the IDictionary parameter.

How can I do that on the fly? Without creating a Dictionary variable.

EDIT TagBuilder is an example, there are other classes that accept a parameter IDictionary as well. The question is about the generic case.

share|improve this question

3 Answers

up vote 4 down vote accepted

The following blog post has a helper method that can create Dictionary objects from anonymous types.

http://weblogs.asp.net/rosherove/archive/2008/03/11/turn-anonymous-types-into-idictionary-of-values.aspx

void CreateADictionaryFromAnonymousType() 
   { 
       var dictionary = MakeDictionary(new {Name="Roy",Country="Israel"}); 
       Console.WriteLine(dictionary["Name"]); 
   }

private IDictionary MakeDictionary(object withProperties) 
   { 
       IDictionary dic = new Dictionary<string, object>(); 
       var properties = 
           System.ComponentModel.TypeDescriptor.GetProperties(withProperties); 
       foreach (PropertyDescriptor property in properties) 
       { 
           dic.Add(property.Name,property.GetValue(withProperties)); 
       } 
       return dic; 
   }
share|improve this answer
Robert, I don't see how that works in an object initializer. – John Saunders Jul 30 '09 at 0:22
It doesn't work for TagBuilder because, as you correctly point out, the setter is private. – Robert Harvey Jul 30 '09 at 0:36

Another way to create Dictionaries from Anonymous types:

new Dictionary<int, StudentName>()
{
    { 111, new StudentName {FirstName="Sachin", LastName="Karnik", ID=211}},
    { 112, new StudentName {FirstName="Dina", LastName="Salimzianova", ID=317}},
    { 113, new StudentName {FirstName="Andy", LastName="Ruth", ID=198}}
};

http://msdn.microsoft.com/en-us/library/bb531208.aspx

share|improve this answer

If you're referring to the Attributes property, the setter is private, so you can't set it in an object initializer.

After you've initialized the TagBuilder, you should be able to add individual attributes with tr.Attributes.Add(key,value).

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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