2 writes to Byte8
System.Private.CoreLib (2)
src\System\Reflection\RuntimeCustomAttributeData.cs (2)
839arg.PrimitiveValue = new PrimitiveValue() { Byte8 = parser.GetI8() }; 845arg.PrimitiveValue = new PrimitiveValue() { Byte8 = BitConverter.DoubleToInt64Bits(parser.GetR8()) };
4 references to Byte8
System.Private.CoreLib (4)
src\System\Reflection\RuntimeCustomAttributeData.cs (4)
536CustomAttributeEncoding.Int64 => val.Byte8, 537CustomAttributeEncoding.UInt64 => (ulong)val.Byte8, 539CustomAttributeEncoding.Double => BitConverter.Int64BitsToDouble(val.Byte8), 540_ => throw new ArgumentException(SR.Format(SR.Arg_EnumIllegalVal, val.Byte8), nameof(val))