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