I am trying to learn all the new goodies that come with C# 4.0. I am failing to understand the differences between the DynamicObject and ExpandoObject types. It seems like DynamicObject is used e.g. when you want to access variables from Python scripts and ExpandoObject when talking with COM/Office objects. Am I right? What is the difference in their use?
C# 4.0 Dynamic vs Expando... where do they fit?
28.2k Views Asked by Perpetualcoder At
1
There are 1 best solutions below
Related Questions in C#-4.0
- Passing arguments to main in C using Eclipse
- kernel module does not print packet info
- error C2016 (C requires that a struct or union has at least one member) and structs typedefs
- Drawing with ncurses, sockets and fork
- How to catch delay-import dll errors (missing dll or symbol) in MinGW(-w64)?
- Configured TTL for A record(s) backing CNAME records
- Allocating memory for pointers inside structures in functions
- Finding articulation point of undirected graph by DFS
- C first fgets() is being skipped while the second runs
- C std library don't appear to be linked in object file
- gcc static library compilation
- How to do a case-insensitive string comparison?
- C programming: Create and write 2D array of files as function
- How to read a file then store to array and then print?
- Function timeouts in C and thread
Related Questions in EXPANDOOBJECT
- Extending the DefaultContractResolver to convert ExpandoObject sub properties to PascalCase
- Adding Interface Implementation to ExpandoObject
- 'ExpandoObject' does not contain a definition for 'PropertyChanged'
- How could ExpandoObjects be used to replace the listed incrementally composed classes?
- Is it possible to add attributes to a property of dynamic object runtime?
- How to extend a method at runtime?
- ExpandoObject - why a Type behaves differently?
- Dynamically adding properties to an ExpandoObject
- A substitute for ExpandoObject in .NET 3.5 with least overhead
- Persisting an ExpandoObject to MongoDB
- Short way to achieve dynamic objects from LINQ to XML select query?
- How to flatten an ExpandoObject returned via JsonResult in asp.net mvc?
- Is it possible to query list of ExpandoObject?
- How to get ServiceStack to serialize a dynamic (ExpandoObject) property on request
- System.Linq.Dynamic.Core - error message: “target object is not an ExpandoObject”
Related Questions in DYNAMICOBJECT
- How to SELECT dynamic type of objects in SQLiteAsyncConnection-
- how to check if an object is object[0]?
- Vb.net Dynamic Properties on inherited objects
- Cannot apply indexing with [] to an expression of type 'System.Dynamic.DynamicObject'
- c# DynamicObject class dynamic properties from loop
- DLR & Performance
- php dynamic class inheritance
- How to get ServiceStack to serialize a dynamic (ExpandoObject) property on request
- How to Create a dynamic class and add it to project
- Newtonsoft.Json.JsonSerializationException: 'Unexpected token when deserializing object: Comment with Dynamic Object
- Providing a DynamicObject properties
- "'System.Dynamic.ExpandoObject' does not contain a definition for "PropertyName"
- How to use Parallel.ForEach method with Dynamic objects
- Load a class "on-the-fly" with php
- C# DynamicObject dynamic properties
Related Questions in DYNAMIC-KEYWORD
- Why doesn't dynamic keyword work with dynamically loaded assemblies?
- Why do extension methods fail to get resolved for dynamic types?
- Is the dynamic keyword meant to be *only* used with dynamic languages?
- Swift json dynamic key parsing for json
- C# 4.0 Dynamic vs Expando... where do they fit?
- Limitations of the dynamic type in C#
- C# dynamic: Assign properties dynamically
- Debugging issue (VS2010) when using dynamic keyword
- Is there a conceptual reason why calling a method with a dynamic parameter always returns dynamic?
- How to extract var from query string and write it (echo) into the html?
- How can I create a sequence of numbered variables at run time?
- How to create POJO class for retrofit with dynamic keys names
- Replacing static Resource properties with DynamicObject
- C# Using the Dynamic keyword to access properties via strings without reflection
- C# - Dynamic Keyword and Interface Implementations
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Expando is a
dynamictype to which members can be added (or removed) at runtime.dynamicis designed to allow .NET to interoperate with types when interfacing with dynamic typing languages such as Python and JavaScript.So, if you need to handle a dynamic type: use
dynamicand if you need to handle dynamic data such as XML or JSON: use ExpandoObjectThe declaration of an expando shows the relationship between dynamic and the expando:
And the ability to add a new property:
That last line of code creates a brand new string property in the expando object called
SomeNewStringVal. The string type is inferred from the assignment.So an expando is a dynamic data type that can represent dynamically changing data. That's it in a nutshell. Here's a deeper look at dynamic and expando.
Complete example: