16 references to Value
Microsoft.CodeAnalysis.UnitTests (1)
PEWriter\InstructionOperandTypesTests.cs (1)
35var value = unchecked((ushort)opCode.Value);
System.Private.CoreLib (5)
src\libraries\System.Private.CoreLib\src\System\Reflection\Emit\Opcode.cs (4)
94OpCodeValues opCodeValue = (OpCodeValues)(ushort)Value; 126public bool Equals(OpCode obj) => obj.Value == Value; 132public override int GetHashCode() => Value;
src\System\Reflection\Emit\RuntimeILGenerator.cs (1)
120short opcodeValue = opcode.Value;
System.Private.Xml (8)
System\Xml\Xsl\IlGen\GenerateHelper.cs (8)
759if (opcodeBranch.Value == OpCodes.Beq.Value) 761else if (opcodeBranch.Value == OpCodes.Beq_S.Value) 763else if (opcodeBranch.Value == OpCodes.Bne_Un.Value) 765else if (opcodeBranch.Value == OpCodes.Bne_Un_S.Value)
System.Reflection.Emit (2)
System\Reflection\Emit\ILGeneratorImpl.cs (2)
289_il.OpCode((ILOpCode)opcode.Value); 512_il.Branch((ILOpCode)opcode.Value, labelInfo._metaLabel);