8 references to Decimal
System.Formats.Nrbf (8)
System\Formats\Nrbf\NrbfDecoder.cs (2)
265PrimitiveType.Decimal => new MemberPrimitiveTypedRecord<decimal>(reader.ParseDecimal()), 291PrimitiveType.Decimal => Decode<decimal>(info, reader),
System\Formats\Nrbf\RectangularArrayRecord.cs (3)
180PrimitiveType.Decimal => -1, // represented as variable-length string 223PrimitiveType.Decimal => typeof(decimal), 244PrimitiveType.Decimal => typeof(decimal[]),
System\Formats\Nrbf\Utils\BinaryReaderExtensions.cs (1)
95PrimitiveType.Decimal => reader.ParseDecimal(),
System\Formats\Nrbf\Utils\TypeNameHelpers.cs (2)
43PrimitiveType.Decimal => "System.Decimal", 95return PrimitiveType.Decimal;