System.Dynamic.ConvertBinder.ConvertBinder C# (CSharp) Method

ConvertBinder() protected method

Initializes a new instance of the ConvertBinder.
protected ConvertBinder ( Type type, bool @explicit ) : System.Dynamic.Utils
type Type The type to convert to.
@explicit bool
return System.Dynamic.Utils
        protected ConvertBinder(Type type, bool @explicit)
        {
            ContractUtils.RequiresNotNull(type, nameof(type));

            Type = type;
            Explicit = @explicit;
        }