Implemented interface member:
method
ToString
System.IConvertible.ToString(System.IFormatProvider)
21 references to ToString
mscorlib (5)
system\convert.cs (2)
1910
return value.
ToString
(CultureInfo.CurrentCulture);
1916
return value.
ToString
(provider);
system\io\textwriter.cs (1)
260
Write(value.
ToString
(FormatProvider));
system\text\stringbuilder.cs (2)
997
return Append(value.
ToString
(CultureInfo.CurrentCulture));
1243
return Insert(index, value.
ToString
(CultureInfo.CurrentCulture), 1);
System (2)
compmod\microsoft\csharp\csharpcodeprovider.cs (1)
1207
Output.Write(((UInt64)e.Value).
ToString
(CultureInfo.InvariantCulture));
compmod\microsoft\visualbasic\VBCodeProvider.cs (1)
1078
Output.Write(((UInt64)e.Value).
ToString
(CultureInfo.InvariantCulture));
System.Data (2)
fx\src\data\System\Data\SqlClient\TdsParser.cs (2)
5406
Debug.Assert((stateObj._longlen == 0) && (stateObj._longlenleft == 0), "ReadSqlValue did not read plp field completely, longlen =" + stateObj._longlen.
ToString
((IFormatProvider)null) + ",longlenleft=" + stateObj._longlenleft.
ToString
((IFormatProvider)null));
System.Management (4)
property.cs (4)
460
((String[])(wmiValue))[i] = (Convert.ToUInt64(valArray.GetValue(i),(IFormatProvider)culInfo.GetFormat(typeof(System.UInt64)))).
ToString
((IFormatProvider)culInfo.GetFormat(typeof(System.UInt64)));
567
wmiValue = (Convert.ToUInt64(val,(IFormatProvider)culInfo.GetFormat(typeof(System.UInt64)))).
ToString
((IFormatProvider)culInfo.GetFormat(typeof(System.UInt64)));
701
((string[])wmiValue) [i] = ((System.UInt64)(arrayValue[i])).
ToString
((IFormatProvider)culInfo.GetFormat(typeof(System.UInt64)));
783
wmiValue = ((System.UInt64)val).
ToString
((IFormatProvider)culInfo.GetFormat(typeof(System.UInt64)));
System.Runtime.Serialization (1)
System\Xml\XmlConverter.cs (1)
422
static public string ToString(UInt64 value) { return value.
ToString
(NumberFormatInfo.InvariantInfo); }
System.ServiceModel (4)
System\ServiceModel\Channels\PeerHelpers.cs (1)
957
return new PeerDictionaryHeader(XD.PeerWireStringsDictionary.HopCount, XD.PeerWireStringsDictionary.HopCountNamespace, hopcount.
ToString
(CultureInfo.InvariantCulture));
System\ServiceModel\Diagnostics\PeerNodeTraceRecord.cs (3)
52
writer.WriteElementString("NodeId", this.id.
ToString
(CultureInfo.InvariantCulture));
112
writer.WriteElementString("RemoteNodeId", this.remoteNodeId.
ToString
(CultureInfo.InvariantCulture));
113
writer.WriteElementString("LocalNodeId", this.localNodeId.
ToString
(CultureInfo.InvariantCulture));
System.Workflow.Activities (2)
Rules\ArithmeticLiteral.cs (2)
2386
return (v + m_value.
ToString
(CultureInfo.CurrentCulture));
3376
return (v.
ToString
(CultureInfo.CurrentCulture) + m_value);
System.Xml (1)
System\Xml\BinaryXml\XmlBinaryReader.cs (1)
3503
return ValueAsULong().
ToString
( CultureInfo.InvariantCulture );