Implemented interface member:
method
ToString
System.IFormattable.ToString(System.String, System.IFormatProvider)
9 references to ToString
System (1)
compmod\system\componentmodel\DecimalConverter.cs (1)
113
return ((Decimal)value).
ToString
("G", formatInfo);
System.Activities.DurableInstancing (1)
System\Activities\DurableInstancing\SerializationUtilities.cs (1)
260
string decimalAsString = value.
ToString
("G", CultureInfo.InvariantCulture);
System.Data (1)
fx\src\data\System\Data\SQLTypes\SQLMoney.cs (1)
254
return money.
ToString
("#0.00##", (IFormatProvider)null);
System.Runtime.Serialization (1)
System\Xml\XmlConverter.cs (1)
1021
return ToAsciiChars(value.
ToString
(null, NumberFormatInfo.InvariantInfo), buffer, offset);
System.Web (1)
UI\ObjectConverter.cs (1)
111
return ((Decimal)value).
ToString
(formatString, CultureInfo.InvariantCulture);
System.Windows.Forms (1)
winforms\Managed\System\WinForms\NumericUpDown.cs (1)
758
text = num.
ToString
((ThousandsSeparator ? "N" : "F") + DecimalPlaces.ToString(CultureInfo.CurrentCulture), CultureInfo.CurrentCulture);
System.Xml (3)
System\Xml\BinaryXml\SqlUtils.cs (1)
568
return money.
ToString
("#0.00##", CultureInfo.InvariantCulture);
System\Xml\Serialization\XmlSerializationWriter.cs (1)
3108
Writer.Write(((Decimal)value).
ToString
(null, NumberFormatInfo.InvariantInfo));
System\Xml\XmlConvert.cs (1)
645
return value.
ToString
(null, NumberFormatInfo.InvariantInfo);