Microsoft.CSharp.RuntimeBinder.Semantics.ExprCast
namespace Microsoft.CSharp.RuntimeBinder.Semantics
{
internal sealed class ExprCast : ExprWithType
{
public Expr Argument { get; set; }
public bool IsBoxingCast { get; }
public ExprCast(EXPRFLAG flags, CType type, Expr argument);
}
}