Microsoft.CSharp.RuntimeBinder.Semantics.CONSTVAL
namespace Microsoft.CSharp.RuntimeBinder.Semantics
{
internal sealed class CONSTVAL
{
public object objectVal { get; set; }
public bool boolVal { get; set; }
public sbyte sbyteVal { get; }
public byte byteVal { get; }
public short shortVal { get; }
public ushort ushortVal { get; }
public int iVal { get; set; }
public uint uiVal { get; set; }
public long longVal { get; set; }
public ulong ulongVal { get; set; }
public float floatVal { get; set; }
public double doubleVal { get; set; }
public decimal decVal { get; set; }
public char cVal { get; }
public string strVal { get; set; }
public bool IsNullRef();
public bool IsZero(ConstValKind kind);
}
}