Implemented interface member:
method
ToString
System.IConvertible.ToString(System.IFormatProvider)
21 references to ToString
mscorlib (5)
system\convert.cs (2)
1910return value.ToString(CultureInfo.CurrentCulture); 1916return value.ToString(provider);
system\io\textwriter.cs (1)
260Write(value.ToString(FormatProvider));
system\text\stringbuilder.cs (2)
997return Append(value.ToString(CultureInfo.CurrentCulture)); 1243return Insert(index, value.ToString(CultureInfo.CurrentCulture), 1);
System (2)
compmod\microsoft\csharp\csharpcodeprovider.cs (1)
1207Output.Write(((UInt64)e.Value).ToString(CultureInfo.InvariantCulture));
compmod\microsoft\visualbasic\VBCodeProvider.cs (1)
1078Output.Write(((UInt64)e.Value).ToString(CultureInfo.InvariantCulture));
System.Data (2)
fx\src\data\System\Data\SqlClient\TdsParser.cs (2)
5406Debug.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)
422static public string ToString(UInt64 value) { return value.ToString(NumberFormatInfo.InvariantInfo); }
System.ServiceModel (4)
System\ServiceModel\Channels\PeerHelpers.cs (1)
957return new PeerDictionaryHeader(XD.PeerWireStringsDictionary.HopCount, XD.PeerWireStringsDictionary.HopCountNamespace, hopcount.ToString(CultureInfo.InvariantCulture));
System\ServiceModel\Diagnostics\PeerNodeTraceRecord.cs (3)
52writer.WriteElementString("NodeId", this.id.ToString(CultureInfo.InvariantCulture)); 112writer.WriteElementString("RemoteNodeId", this.remoteNodeId.ToString(CultureInfo.InvariantCulture)); 113writer.WriteElementString("LocalNodeId", this.localNodeId.ToString(CultureInfo.InvariantCulture));
System.Workflow.Activities (2)
Rules\ArithmeticLiteral.cs (2)
2386return (v + m_value.ToString(CultureInfo.CurrentCulture)); 3376return (v.ToString(CultureInfo.CurrentCulture) + m_value);
System.Xml (1)
System\Xml\BinaryXml\XmlBinaryReader.cs (1)
3503return ValueAsULong().ToString( CultureInfo.InvariantCulture );