Hello all,
Some of coolest topics , I came across, ExpandoObject in C#
dynamic dynamicObject = new ExpandoObject();
While addiing into code base, found compile time error,
Error CS0656 Missing compiler required member 'Microsoft.CSharp.RuntimeBinder.CSharpArgumentInfo.Create'
To over come from this, You need to add a reference to the DLL Microsoft.CSharp.dll.
It will resolve your compile time error, and you can take benifitws of ExpandoObject.
No comments:
Post a Comment