Implemented interface member:
method
ToString
System.IFormattable.ToString(System.String, System.IFormatProvider)
17 references to ToString
dotnet-svcutil-lib (6)
FrameworkFork\Microsoft.Xml\Xml\Core\XmlEncodedRawTextWriter.cs (1)
1770error = string.Format(ResXml.Xml_InvalidSurrogateHighChar, ((uint)chars[i]).ToString("X", CultureInfo.InvariantCulture));
FrameworkFork\Microsoft.Xml\Xml\Core\XmlUtf8RawTextWriter.cs (1)
1650error = string.Format(ResXml.Xml_InvalidSurrogateHighChar, ((uint)chars[i]).ToString("X", CultureInfo.InvariantCulture));
FrameworkFork\Microsoft.Xml\Xml\XmlConvert.cs (4)
773return value.ToString(null, NumberFormatInfo.InvariantInfo); 1822((uint)hi).ToString( "X", CultureInfo.InvariantCulture ), 1823((uint)low).ToString( "X", CultureInfo.InvariantCulture ) 1840return CreateException(ResXml.Xml_InvalidSurrogateHighChar, ((uint)hi).ToString("X", CultureInfo.InvariantCulture), exceptionType, lineNo, linePos);
Microsoft.AspNetCore.Server.Kestrel.Microbenchmarks (1)
StringUtilitiesBenchmark.cs (1)
21var id = connectionId + ':' + i.ToString("X8", CultureInfo.InvariantCulture);
Microsoft.Build.Tasks.CodeAnalysis (1)
Vbc.cs (1)
369return baseAddressDecimal.ToString("X", CultureInfo.InvariantCulture);
Microsoft.VisualBasic.Core (1)
Microsoft\VisualBasic\CompilerServices\Conversions.vb (1)
2186Return Value.ToString(Nothing, Nothing)
System.ComponentModel.TypeConverter (1)
System\ComponentModel\UInt32Converter.cs (1)
37return ((uint)value).ToString("G", formatInfo);
System.Private.Xml (7)
System\Xml\Core\XmlEncodedRawTextWriter.cs (1)
1889error = SR.Format(SR.Xml_InvalidSurrogateHighChar, ((uint)chars[i]).ToString("X", CultureInfo.InvariantCulture));
System\Xml\Core\XmlUtf8RawTextWriter.cs (1)
1751error = SR.Format(SR.Xml_InvalidSurrogateHighChar, ((uint)chars[i]).ToString("X", CultureInfo.InvariantCulture));
System\Xml\XmlConvert.cs (4)
654return value.ToString(null, CultureInfo.InvariantCulture); 1588((uint)hi).ToString("X", CultureInfo.InvariantCulture), 1589((uint)low).ToString("X", CultureInfo.InvariantCulture) 1606return CreateException(SR.Xml_InvalidSurrogateHighChar, ((uint)hi).ToString("X", CultureInfo.InvariantCulture), exceptionType, lineNo, linePos);
System\Xml\Xsl\XsltOld\SequentialOutput.cs (1)
616Write(((uint)_byteBuffer![j]).ToString("X2", CultureInfo.InvariantCulture));