6 instantiations of 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)
524private static object EncodedValueToRawValue(PrimitiveValue val, CustomAttributeEncoding encodedType) 700public PrimitiveValue PrimitiveValue { get; set; }