<PackageReference Include="Microsoft.CSharp" Version="4.6.0-preview5.19224.8" />

RuntimeBinderInternalCompilerException

Represents an error that occurs when a dynamic bind in the C# runtime binder is processed.
using System; using System.Runtime.Serialization; namespace Microsoft.CSharp.RuntimeBinder { [Serializable] public class RuntimeBinderInternalCompilerException : Exception { public RuntimeBinderInternalCompilerException() { } public RuntimeBinderInternalCompilerException(string message) : base(message) { } public RuntimeBinderInternalCompilerException(string message, Exception innerException) : base(message, innerException) { } protected RuntimeBinderInternalCompilerException(SerializationInfo info, StreamingContext context) : base(info, context) { } } }