6 references to TryFormatUInt32
System.Private.CoreLib (6)
src\libraries\System.Private.CoreLib\src\System\Byte.cs (2)
164return Number.TryFormatUInt32(m_value, format, provider, destination, out charsWritten); 170return Number.TryFormatUInt32(m_value, format, provider, utf8Destination, out bytesWritten);
src\libraries\System.Private.CoreLib\src\System\UInt16.cs (2)
115return Number.TryFormatUInt32(m_value, format, provider, destination, out charsWritten); 121return Number.TryFormatUInt32(m_value, format, provider, utf8Destination, out bytesWritten);
src\libraries\System.Private.CoreLib\src\System\UInt32.cs (2)
131return Number.TryFormatUInt32(m_value, format, provider, destination, out charsWritten); 137return Number.TryFormatUInt32(m_value, format, provider, utf8Destination, out bytesWritten);