16 references to Boxes
Microsoft.CodeAnalysis (16)
ConstantValue.cs (15)
521
case ConstantValueTypeDiscriminator.SByte: return
Boxes
.Box(SByteValue);
522
case ConstantValueTypeDiscriminator.Byte: return
Boxes
.Box(ByteValue);
523
case ConstantValueTypeDiscriminator.Int16: return
Boxes
.Box(Int16Value);
524
case ConstantValueTypeDiscriminator.UInt16: return
Boxes
.Box(UInt16Value);
525
case ConstantValueTypeDiscriminator.Int32: return
Boxes
.Box(Int32Value);
526
case ConstantValueTypeDiscriminator.UInt32: return
Boxes
.Box(UInt32Value);
527
case ConstantValueTypeDiscriminator.Int64: return
Boxes
.Box(Int64Value);
528
case ConstantValueTypeDiscriminator.UInt64: return
Boxes
.Box(UInt64Value);
529
case ConstantValueTypeDiscriminator.NInt: return
Boxes
.Box(Int32Value);
530
case ConstantValueTypeDiscriminator.NUInt: return
Boxes
.Box(UInt32Value);
531
case ConstantValueTypeDiscriminator.Char: return
Boxes
.Box(CharValue);
532
case ConstantValueTypeDiscriminator.Boolean: return
Boxes
.Box(BooleanValue);
533
case ConstantValueTypeDiscriminator.Single: return
Boxes
.Box(SingleValue);
534
case ConstantValueTypeDiscriminator.Double: return
Boxes
.Box(DoubleValue);
535
case ConstantValueTypeDiscriminator.Decimal: return
Boxes
.Box(DecimalValue);
MetadataReader\MetadataDecoder.cs (1)
2165
return CreateTypedConstant(type, kind,
Boxes
.Box(value));