6 writes to PrimitiveValue
System.Private.CoreLib (6)
src\System\Reflection\RuntimeCustomAttributeData.cs (6)
826arg.PrimitiveValue = new PrimitiveValue() { Byte4 = parser.GetU1() }; 831arg.PrimitiveValue = new PrimitiveValue() { Byte4 = parser.GetU2() }; 835arg.PrimitiveValue = new PrimitiveValue() { Byte4 = parser.GetI4() }; 839arg.PrimitiveValue = new PrimitiveValue() { Byte8 = parser.GetI8() }; 842arg.PrimitiveValue = new PrimitiveValue() { Byte4 = BitConverter.SingleToInt32Bits(parser.GetR4()) }; 845arg.PrimitiveValue = new PrimitiveValue() { Byte8 = BitConverter.DoubleToInt64Bits(parser.GetR8()) };
2 references to PrimitiveValue
System.Private.CoreLib (2)
src\System\Reflection\RuntimeCustomAttributeData.cs (2)
561_value = EncodedValueToRawValue(encodedArg.PrimitiveValue, encodedArg.CustomAttributeType.EncodedEnumType); 609_value = EncodedValueToRawValue(encodedArg.PrimitiveValue, encodedType);