6 references to FormatInt32
System.Private.CoreLib (6)
src\libraries\System.Private.CoreLib\src\System\Int16.cs (2)
105return Number.FormatInt32(m_value, 0, null, provider); 115return Number.FormatInt32(m_value, 0x0000FFFF, format, provider);
src\libraries\System.Private.CoreLib\src\System\Int32.cs (2)
126return Number.FormatInt32(m_value, 0, null, provider); 131return Number.FormatInt32(m_value, ~0, format, provider);
src\libraries\System.Private.CoreLib\src\System\SByte.cs (2)
113return Number.FormatInt32(m_value, 0, null, provider); 118return Number.FormatInt32(m_value, 0x000000FF, format, provider);