Implemented interface member:
method
ToString
System.IConvertible.ToString(System.IFormatProvider)
31 references to ToString
mscorlib (4)
system\convert.cs (2)
1845
return value.
ToString
(CultureInfo.CurrentCulture);
1850
return value.
ToString
(provider);
system\text\stringbuilder.cs (2)
922
return Append(value.
ToString
(CultureInfo.CurrentCulture));
1082
return Insert(index, value.
ToString
(CultureInfo.CurrentCulture), 1);
PresentationCore (2)
Core\CSharp\System\Windows\Media\Animation\Generated\ByteAnimation.cs (2)
331
defaultOriginValue.
ToString
(CultureInfo.InvariantCulture)));
342
defaultDestinationValue.
ToString
(CultureInfo.InvariantCulture)));
PresentationFramework (3)
src\Framework\System\Windows\Documents\XamlToRtfWriter.cs (3)
562
_rtfBuilder.Append(color.R.
ToString
(CultureInfo.InvariantCulture));
564
_rtfBuilder.Append(color.G.
ToString
(CultureInfo.InvariantCulture));
566
_rtfBuilder.Append(color.B.
ToString
(CultureInfo.InvariantCulture));
System (3)
compmod\microsoft\csharp\csharpcodeprovider.cs (1)
1232
Output.Write(((byte)e.Value).
ToString
(CultureInfo.InvariantCulture));
compmod\system\codedom\compiler\CodeGenerator.cs (1)
1509
Output.Write(((byte)e.Value).
ToString
(CultureInfo.InvariantCulture));
net\System\Net\SocketAddress.cs (1)
289
bytes.Append(this[i].
ToString
(NumberFormatInfo.InvariantInfo));
System.Data (10)
fx\src\data\System\Data\SqlClient\SqlUtil.cs (3)
451
return ADP.Argument(Res.GetString(Res.SQL_PrecisionValueOutOfRange, precision.
ToString
(CultureInfo.InvariantCulture)));
454
return ADP.Argument(Res.GetString(Res.SQL_ScaleValueOutOfRange, scale.
ToString
(CultureInfo.InvariantCulture)));
457
return ADP.Argument(Res.GetString(Res.SQL_TimeScaleValueOutOfRange, scale.
ToString
(CultureInfo.InvariantCulture)));
fx\src\data\System\Data\SqlClient\TdsParser.cs (5)
2300
Debug.Assert(false, "Unhandled token: " + token.
ToString
(CultureInfo.InvariantCulture));
3692
Debug.Assert(0 != codePage, "GetCodePage accessed codepage array and produced 0!, sortID =" + ((Byte)(collation.sortId)).
ToString
((IFormatProvider)null));
5029
Debug.Assert(false, "Unknown tds type for SqlString!" + type.
ToString
(CultureInfo.InvariantCulture));
5634
Debug.Assert(false, "Unknown SqlType!" + tdsType.
ToString
(CultureInfo.InvariantCulture));
5803
Debug.Assert(false, "Unknown tds type in SqlVariant!" + type.
ToString
(CultureInfo.InvariantCulture));
fx\src\data\System\Data\SQLTypes\SQLByte.cs (1)
110
return IsNull ? SQLResource.NullString : m_value.
ToString
((IFormatProvider)null);
fx\src\data\System\Data\SQLTypes\SQLString.cs (1)
519
return x.IsNull ? Null : new SqlString((x.Value).
ToString
((IFormatProvider)null));
System.Data.Entity (1)
System\Data\SqlClient\SqlGen\SqlGenerator.cs (1)
973
string decimalType = "decimal(" + precision.
ToString
(CultureInfo.InvariantCulture) + ")";
System.Data.Services (1)
System\Data\Services\Serializers\JsonWriter.cs (1)
293
this.WriteCore(value.
ToString
(CultureInfo.InvariantCulture), /* quotes */ false);
System.IdentityModel (2)
System\IdentityModel\Diagnostics\DigestTraceRecordHelper.cs (2)
95
writer.WriteElementString(FirstByte, key[0].
ToString
(CultureInfo.InvariantCulture)); // first byte of the key
96
writer.WriteElementString(LastByte, key[key.Length - 1].
ToString
(CultureInfo.InvariantCulture)); // last byte of the key
System.Runtime.Remoting (3)
channels\tcp\tcpsocketmanager.cs (3)
81
majorVersion.
ToString
(CultureInfo.CurrentCulture) + "." + minorVersion.
ToString
(CultureInfo.CurrentCulture)));
316
strFormat.
ToString
(CultureInfo.CurrentCulture)));
System.Web.DataVisualization (1)
Common\Utilities\XmlSerializer.cs (1)
529
fontData += ", GdiCharSet=" + font.GdiCharSet.
ToString
(System.Globalization.CultureInfo.InvariantCulture);
System.Windows.Forms.DataVisualization (1)
Common\Utilities\XmlSerializer.cs (1)
529
fontData += ", GdiCharSet=" + font.GdiCharSet.
ToString
(System.Globalization.CultureInfo.InvariantCulture);