8 references to ValueTypeValue
ILCompiler.Compiler (8)
Compiler\TypePreinit.cs (8)
420fieldValue = new ValueTypeValue(GetFieldRvaData(ecmaField)); 2330return new ValueTypeValue((byte[])InstanceBytes.Clone()); 2404public static ValueTypeValue FromSByte(sbyte value) => new ValueTypeValue(new byte[1] { (byte)value }); 2405public static ValueTypeValue FromInt16(short value) => new ValueTypeValue(BitConverter.GetBytes(value)); 2406public static ValueTypeValue FromInt32(int value) => new ValueTypeValue(BitConverter.GetBytes(value)); 2407public static ValueTypeValue FromInt64(long value) => new ValueTypeValue(BitConverter.GetBytes(value)); 2408public static ValueTypeValue FromSingle(float value) => new ValueTypeValue(BitConverter.GetBytes(value)); 2409public static ValueTypeValue FromDouble(double value) => new ValueTypeValue(BitConverter.GetBytes(value));