2 instantiations of ConstantByteValue
ILCompiler.MetadataTransform (2)
ILCompiler\Metadata\Transform.Constant.cs (1)
28return new ConstantByteValue { Value = blob.ReadByte() };
ILCompiler\Metadata\Transform.CustomAttribute.cs (1)
162Ecma.SerializationTypeCode.Byte => new ConstantByteValue { Value = valueReader.ReadByte() },
6 references to ConstantByteValue
ILCompiler.MetadataTransform (6)
Internal\Metadata\NativeFormat\Writer\MdBinaryWriterGen.cs (3)
392public static void Write(this NativeWriter writer, ConstantByteValue record) 400public static void Write(this NativeWriter writer, List<ConstantByteValue> values) 408foreach (ConstantByteValue value in values)
Internal\Metadata\NativeFormat\Writer\NativeFormatWriterGen.cs (3)
389var other = obj as ConstantByteValue; 412internal static ConstantByteValueHandle AsHandle(ConstantByteValue record)