Exception CS0656 C# Missing compiler required member Microsoft.CSharp.RuntimeBinder.Binder.Convert Edit
I was getting this Exception CS0656 C# Missing compiler required member Microsoft.CSharp.RuntimeBinder.Binder.Convert while I compile the program.
Solution
To fix this issue add a reference to Microsoft.CSharp using NuGet package manager
1. Right-click on packages. 2. Select Manage NuGet Packages 3. Browse tag search for Microsoft.CSharp 4. Click on install in the right window to install the package.
Once you install the package the build error will be gone.