top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

Getting Exception "Missing compiler required member 'Microsoft.CSharp.RuntimeBinder.CSharpArgumentInfo.Create"

0 votes
1,001 views

I am using dynamic keyword to deserailize my JSON Object. But I am getting error "Missing compiler required member 'Microsoft.CSharp.RuntimeBinder.CSharpArgumentInfo.Create".

dynamic userId = JValue.Parse(responseLine);

I have added Mycrosoft,CSharp.dll reference also in the project but no luck.

Let me know what I am missing.

posted Apr 26, 2017 by Rohini Agarwal

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

0 votes

You need to add CSharp.dll as a reference to your project. Because Visual studio does not support keyword dynamic without adding CSharp.dll reference.

You can look into COM for this dll for adding it as a reference.

answer May 3, 2017 by Shweta Singh
Similar Questions
+3 votes

By-default all the methods & variables in class are private.

In C#.net Main() method is private then how compiler access this Main() Method out side the class because compiler is not part of our program then how compiler access this Main() method?

Here we loose our data abstraction property ? Can anyone put some light on it?

...