<PackageReference Include="Microsoft.CSharp" Version="4.7.0" />

RuntimeBinderException

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 RuntimeBinderException : Exception { public RuntimeBinderException() { } public RuntimeBinderException(string message) : base(message) { } public RuntimeBinderException(string message, Exception innerException) : base(message, innerException) { } protected RuntimeBinderException(SerializationInfo info, StreamingContext context) : base(info, context) { } } }