8 references to ValueTypeValue
ILCompiler.Compiler (8)
Compiler\TypePreinit.cs (8)
431fieldValue = new ValueTypeValue(GetFieldRvaData(ecmaField)); 2357return new ValueTypeValue((byte[])InstanceBytes.Clone()); 2431public static ValueTypeValue FromSByte(sbyte value) => new ValueTypeValue(new byte[1] { (byte)value }); 2432public static ValueTypeValue FromInt16(short value) => new ValueTypeValue(BitConverter.GetBytes(value)); 2433public static ValueTypeValue FromInt32(int value) => new ValueTypeValue(BitConverter.GetBytes(value)); 2434public static ValueTypeValue FromInt64(long value) => new ValueTypeValue(BitConverter.GetBytes(value)); 2435public static ValueTypeValue FromSingle(float value) => new ValueTypeValue(BitConverter.GetBytes(value)); 2436public static ValueTypeValue FromDouble(double value) => new ValueTypeValue(BitConverter.GetBytes(value));