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