16 references to Value
Microsoft.CodeAnalysis.UnitTests (1)
PEWriter\InstructionOperandTypesTests.cs (1)
35
var value = unchecked((ushort)opCode.
Value
);
System.Private.CoreLib (5)
src\libraries\System.Private.CoreLib\src\System\Reflection\Emit\Opcode.cs (4)
94
OpCodeValues opCodeValue = (OpCodeValues)(ushort)
Value
;
126
public bool Equals(OpCode obj) => obj.
Value
==
Value
;
132
public override int GetHashCode() =>
Value
;
src\System\Reflection\Emit\RuntimeILGenerator.cs (1)
120
short opcodeValue = opcode.
Value
;
System.Private.Xml (8)
System\Xml\Xsl\IlGen\GenerateHelper.cs (8)
759
if (opcodeBranch.
Value
== OpCodes.Beq.
Value
)
761
else if (opcodeBranch.
Value
== OpCodes.Beq_S.
Value
)
763
else if (opcodeBranch.
Value
== OpCodes.Bne_Un.
Value
)
765
else 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);