3 instantiations of DecimalFormatter
System.Private.Xml (3)
System\Xml\Xsl\Runtime\DecimalFormatter.cs (1)
279return new DecimalFormatter(formatPicture, decimalFormat).Format(value);
System\Xml\Xsl\Runtime\XsltLibrary.cs (2)
189_decimalFormatters.Add(new DecimalFormatter(formatPicture, CreateDecimalFormat(infinitySymbol, nanSymbol, characters))); 208DecimalFormatter formatter = new DecimalFormatter(formatPicture, format);
4 references to DecimalFormatter
System.Private.Xml (4)
System\Xml\Xsl\Runtime\XsltLibrary.cs (3)
83private List<DecimalFormatter>? _decimalFormatters; 188_decimalFormatters ??= new List<DecimalFormatter>(); 208DecimalFormatter formatter = new DecimalFormatter(formatPicture, format);
System\Xml\Xsl\XsltOld\XsltCompileContext.cs (1)
941return DecimalFormatter.Format(ToNumber(args[0]), ToString(args[1]), formatInfo);