8 references to ValueTypeValue
ILCompiler.Compiler (8)
Compiler\TypePreinit.cs (8)
431fieldValue = new ValueTypeValue(GetFieldRvaData(ecmaField)); 2341return new ValueTypeValue((byte[])InstanceBytes.Clone()); 2415public static ValueTypeValue FromSByte(sbyte value) => new ValueTypeValue(new byte[1] { (byte)value }); 2416public static ValueTypeValue FromInt16(short value) => new ValueTypeValue(BitConverter.GetBytes(value)); 2417public static ValueTypeValue FromInt32(int value) => new ValueTypeValue(BitConverter.GetBytes(value)); 2418public static ValueTypeValue FromInt64(long value) => new ValueTypeValue(BitConverter.GetBytes(value)); 2419public static ValueTypeValue FromSingle(float value) => new ValueTypeValue(BitConverter.GetBytes(value)); 2420public static ValueTypeValue FromDouble(double value) => new ValueTypeValue(BitConverter.GetBytes(value));