Microsoft.CSharp.RuntimeBinder.Semantics.ExprConstant
namespace Microsoft.CSharp.RuntimeBinder.Semantics
{
internal sealed class ExprConstant : ExprWithType
{
public Expr OptionalConstructorCall { get; set; }
public bool IsZero { get; }
public ConstVal Val { get; }
public ulong UInt64Value { get; }
public long Int64Value { get; }
public ExprConstant(CType type, ConstVal value);
}
}