Top "Expandoobject" questions

ExpandoObject is a .NET type whose members can be added and removed at runtime.

How can I convert an ExpandoObject to Dictionary in C#?

I'm using Jint to execute JavaScript in a Xamarin app. Jint is converting an associative array into an ExpandoObject. How …

javascript c# dictionary expandoobject
C# - Adding objects dynamically (adding dynamic property names)

I'm trying to create some dynamic ExpandoObject. I've encountered a certain problem. As I don't know what the name of …

c# json dynamic structure expandoobject
Dynamically adding properties to a dynamic object?

i have this dynamic d = new ExpandoObject(); d.Name = attribute.QualifiedName.Name; so , i know that d will have a …

c# c#-4.0 dynamic expandoobject
can one convert a dynamic object to an ExpandoObject (c#)

I am getting an dynamic object of type "Sealed Class" from a driver api (in dll). I want to decorate …

c# c#-4.0 expandoobject
Why can't I index into an ExpandoObject?

Something caught me by surprise when looking into C# dynamics today (I've never used them much, but lately I've been …

c# dynamic expandoobject
Convert from JSON object to expando object in c#

I have a JSON object something like var jsonObject = {"att1" : "val1","att2" : "val2","att3" : "val3","att4" : "val4"} I need to …

c# json converter expandoobject
"'System.Dynamic.ExpandoObject' does not contain a definition for "PropertyName"

I have the following code that generates Dynamic object from XML file: C# private static List<dynamic> GetClientObject() { …

c# .net-4.0 expandoobject dynamicobject
'System.Collections.Generic.IList<object>' does not contain a definition for 'Add' when using 'dynamic' and 'ExpandoObject'

Say that I have a class, Foo, looking something like this: public class Foo : IFoo { public Foo() { Bars = new List&…

.net exception dynamic expandoobject
Is it possible to query list of ExpandoObject?

I wonder if it is possible to query ExpandoObject with regular LINQ? Reason is that I have dynamic ExpandoObject but …

c# linq dynamic expandoobject
A List inside an ExpandoObject

dynamic model = new ExpandoObject(); model.Data = "asdf"; List<dynamic> listOfx = new List<dynamic>(); for (int i = 0; …

c# expandoobject