4 writes to Byte4
System.Private.CoreLib (4)
src\System\Reflection\RuntimeCustomAttributeData.cs (4)
826arg.PrimitiveValue = new PrimitiveValue() { Byte4 = parser.GetU1() }; 831arg.PrimitiveValue = new PrimitiveValue() { Byte4 = parser.GetU2() }; 835arg.PrimitiveValue = new PrimitiveValue() { Byte4 = parser.GetI4() }; 842arg.PrimitiveValue = new PrimitiveValue() { Byte4 = BitConverter.SingleToInt32Bits(parser.GetR4()) };
9 references to Byte4
System.Private.CoreLib (9)
src\System\Reflection\RuntimeCustomAttributeData.cs (9)
528CustomAttributeEncoding.Boolean => (byte)val.Byte4 != 0, 529CustomAttributeEncoding.Char => (char)val.Byte4, 530CustomAttributeEncoding.Byte => (byte)val.Byte4, 531CustomAttributeEncoding.SByte => (sbyte)val.Byte4, 532CustomAttributeEncoding.Int16 => (short)val.Byte4, 533CustomAttributeEncoding.UInt16 => (ushort)val.Byte4, 534CustomAttributeEncoding.Int32 => val.Byte4, 535CustomAttributeEncoding.UInt32 => (uint)val.Byte4, 538CustomAttributeEncoding.Float => BitConverter.Int32BitsToSingle(val.Byte4),