Fix for error CS0656: Missing compiler required member ‘Microsoft.CSharp.RuntimeBinder.CSharpArgumentInfo.Create’

This is one of the most commonly faced errors by the C# developers when they are working with the runtime polymorphism.

When working with the dynamic keyword or ExpandoObject in C# , there are times when you might encounter the below error.

CS0656: Missing compiler required member ‘Microsoft.CSharp.RuntimeBinder.CSharpArgumentInfo.Create’

To fix the issue , ensure that you add a reference to the assembly (dll) -Microsoft.CSharp.dll.

Leave A Reply

Your email address will not be published. Required fields are marked *

You May Also Like

C# Compiler Error CS0442 – ‘Property’: abstract properties cannot have private accessors Reason for the Error You’ll get this error...
This is a really simple one . Below is a simple example of an enum called “Designation” defined with the...
This blog post explain the usage of the Checked Block in .NET and how you can use them in Visual...